| Index: webkit/glue/devtools/js/devtools.js
|
| diff --git a/webkit/glue/devtools/js/devtools.js b/webkit/glue/devtools/js/devtools.js
|
| index f1e9490d3b0516786629ce7cf48baa80446e21e0..68704f0e830c1ce0f6a7aed2a4913c749ec09673 100644
|
| --- a/webkit/glue/devtools/js/devtools.js
|
| +++ b/webkit/glue/devtools/js/devtools.js
|
| @@ -456,3 +456,11 @@ InjectedScriptAccess.getCompletions = function(expressionString,
|
| };
|
| })();
|
|
|
| +
|
| +(function() {
|
| +WebInspector.ElementsPanel.prototype._nodeSearchButtonClicked = function(
|
| + event) {
|
| + InspectorController.toggleNodeSearch();
|
| + this.nodeSearchButton.toggled = !this.nodeSearchButton.toggled;
|
| +};
|
| +})();
|
|
|