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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js

Issue 2851213005: DevTools: brush up audits 2 launcher UI, allow multiple audit runs, introduce landing page. (Closed)
Patch Set: for landing Created 3 years, 8 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: third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js b/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
index e6b2c82d59b8e45be24addf8cf3e1be56245ee41..03e0c1240095d15a2b3bcd234324ee8a01de71bc 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
@@ -75,7 +75,7 @@ UI.SuggestBox = class {
this._glassPane = new UI.GlassPane();
this._glassPane.setAnchorBehavior(UI.GlassPane.AnchorBehavior.PreferBottom);
- this._glassPane.setSetOutsideClickCallback(this.hide.bind(this));
+ this._glassPane.setOutsideClickCallback(this.hide.bind(this));
var shadowRoot = UI.createShadowRootWithCoreStyles(this._glassPane.contentElement, 'ui/suggestBox.css');
shadowRoot.appendChild(this._element);
}

Powered by Google App Engine
This is Rietveld 408576698