| Index: Source/devtools/front_end/ui/Tooltip.js
|
| diff --git a/Source/devtools/front_end/ui/Tooltip.js b/Source/devtools/front_end/ui/Tooltip.js
|
| index dd5555f058dde93b74e5c6154691768f878fab02..9a942801937eaab6053ab296c06bd97a260ee820 100644
|
| --- a/Source/devtools/front_end/ui/Tooltip.js
|
| +++ b/Source/devtools/front_end/ui/Tooltip.js
|
| @@ -13,8 +13,8 @@ WebInspector.Tooltip = function(doc)
|
| this._shadowRoot.appendChild(WebInspector.Widget.createStyleElement("ui/tooltip.css"));
|
|
|
| this._tooltipElement = this._shadowRoot.createChild("div", "tooltip");
|
| - doc.addEventListener("mousemove", this._mouseMove.bind(this), false);
|
| - doc.addEventListener("mousedown", this._hide.bind(this), false);
|
| + doc.addEventListener("mousemove", this._mouseMove.bind(this), true);
|
| + doc.addEventListener("mousedown", this._hide.bind(this), true);
|
| }
|
|
|
| WebInspector.Tooltip.Timing = {
|
|
|