Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1473)

Unified Diff: Source/devtools/front_end/ui/Tooltip.js

Issue 1308563002: DevTools: allow editing custom color palette, move it out of experimental. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 a0bc70ea02a32eb9d0c412bda9557773d5ca563f..376089936c5e4bd2d5435acd093f02e9434942c0 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 = {
« Source/devtools/front_end/elements/Spectrum.js ('K') | « Source/devtools/front_end/main/Main.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698