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

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

Issue 1262063003: Devtools UI: Remove redundant 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
Index: Source/devtools/front_end/ui/treeoutline.js
diff --git a/Source/devtools/front_end/ui/treeoutline.js b/Source/devtools/front_end/ui/treeoutline.js
index 08950c6777168b68734c2ba076fd474ef0a0834f..b1284f884e1f5bed5bd185920cb6df4cfb2b6687 100644
--- a/Source/devtools/front_end/ui/treeoutline.js
+++ b/Source/devtools/front_end/ui/treeoutline.js
@@ -312,8 +312,6 @@ function TreeElement(title, expandable)
this._listItemNode.treeElement = this;
if (title)
this.title = title;
- if (typeof title === "string")
- this.tooltip = title;
paulirish 2015/08/03 16:26:20 Appears to be useful for truncated strings like da
samli 2015/08/05 07:53:31 This is not that and still works. The only instanc
this._listItemNode.addEventListener("mousedown", this._handleMouseDown.bind(this), false);
this._listItemNode.addEventListener("selectstart", this._treeElementSelectStart.bind(this), false);
this._listItemNode.addEventListener("click", this._treeElementToggled.bind(this), false);

Powered by Google App Engine
This is Rietveld 408576698