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

Unified Diff: Source/devtools/front_end/sources/SourcesView.js

Issue 632573002: Adding regex support to search bar in dev tools console (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 6 years, 2 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/sources/SourcesView.js
diff --git a/Source/devtools/front_end/sources/SourcesView.js b/Source/devtools/front_end/sources/SourcesView.js
index c5c5813fa33ad51eb7d1a168d3223a4498ac7928..c1d17ad4654b9957f47b4dbc03bfc0f38ca0308b 100644
--- a/Source/devtools/front_end/sources/SourcesView.js
+++ b/Source/devtools/front_end/sources/SourcesView.js
@@ -21,7 +21,7 @@ WebInspector.SourcesView = function(workspace, sourcesPanel)
this._workspace = workspace;
this._sourcesPanel = sourcesPanel;
- this._searchableView = new WebInspector.SearchableView(this);
+ this._searchableView = new WebInspector.SearchableView(this, false);
this._searchableView.setMinimalSearchQuerySize(0);
this._searchableView.show(this.element);

Powered by Google App Engine
This is Rietveld 408576698