Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeOutline.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeOutline.js b/third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeOutline.js |
| index cafe233b082fbd33d1ef0331282a262e63f07fda..2f60f72319694535ab79aa86a5e2b9285c8f9b4d 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeOutline.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/ElementsTreeOutline.js |
| @@ -73,7 +73,7 @@ WebInspector.ElementsTreeOutline = function(domModel, omitRootDOMNode, selectEna |
| this._visible = false; |
| this._popoverHelper = new WebInspector.PopoverHelper(this._element, this._getPopoverAnchor.bind(this), this._showPopover.bind(this)); |
| - this._popoverHelper.setTimeout(0); |
| + this._popoverHelper.setTimeout(0, 100); |
|
dgozman
2016/04/04 21:49:02
Isn't 100 too short a timeout? Make it 1000 to acc
lushnikov
2016/04/04 22:35:18
You only need it to hover over the popover.
The "
|
| /** @type {!Map<!WebInspector.DOMNode, !WebInspector.ElementsTreeOutline.UpdateRecord>} */ |
| this._updateRecords = new Map(); |