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

Unified Diff: Source/devtools/front_end/SearchableView.js

Issue 244103002: DevTools: handle search view shortcuts before editor shortcuts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/SearchableView.js
diff --git a/Source/devtools/front_end/SearchableView.js b/Source/devtools/front_end/SearchableView.js
index c0d8a718236c520a2c672fb37999086a84735a1d..5083830eb0083a64b0c6cf63089e57dd75c7270f 100644
--- a/Source/devtools/front_end/SearchableView.js
+++ b/Source/devtools/front_end/SearchableView.js
@@ -39,7 +39,7 @@ WebInspector.SearchableView = function(searchable)
WebInspector.VBox.call(this);
this._searchProvider = searchable;
- this.element.addEventListener("keydown", this._onKeyDown.bind(this), false);
+ this.element.addEventListener("keydown", this._onKeyDown.bind(this), true);
this._footerElementContainer = this.element.createChild("div", "search-bar status-bar hidden");
this._footerElementContainer.style.order = 100;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698