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

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

Issue 1271193002: Devtools UI: Behavior and UI update to tooltips (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
« no previous file with comments | « Source/devtools/front_end/ui/SplitWidget.js ('k') | Source/devtools/front_end/ui/Tooltip.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ui/Toolbar.js
diff --git a/Source/devtools/front_end/ui/Toolbar.js b/Source/devtools/front_end/ui/Toolbar.js
index 4a1888e7956c964ef4e09730594c2895514740cd..3b19a9f46a8ed9607ac0e0cf96b2e910043eecd1 100644
--- a/Source/devtools/front_end/ui/Toolbar.js
+++ b/Source/devtools/front_end/ui/Toolbar.js
@@ -240,7 +240,7 @@ WebInspector.ToolbarCounter.prototype = {
}
}
this.element.classList.toggle("hidden", !total);
- WebInspector.Tooltip.install(this.element, title, undefined, this._actionId);
+ WebInspector.Tooltip.install(this.element, title, this._actionId);
},
/**
@@ -404,7 +404,7 @@ WebInspector.ToolbarButtonBase.prototype = {
setAction: function(actionId)
{
this._actionId = actionId;
- WebInspector.Tooltip.install(this.element, this._title, undefined, this._actionId);
+ WebInspector.Tooltip.install(this.element, this._title, this._actionId);
},
/**
@@ -440,7 +440,7 @@ WebInspector.ToolbarButtonBase.prototype = {
if (this._title === title)
return;
this._title = title;
- WebInspector.Tooltip.install(this.element, title, undefined, this._actionId);
+ WebInspector.Tooltip.install(this.element, title, this._actionId);
},
/**
« no previous file with comments | « Source/devtools/front_end/ui/SplitWidget.js ('k') | Source/devtools/front_end/ui/Tooltip.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698