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

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

Issue 1268353005: [DevTools] Support JQuery event listeners (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added UI Created 5 years, 4 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/ObjectEventListenersSidebarPane.js
diff --git a/Source/devtools/front_end/sources/ObjectEventListenersSidebarPane.js b/Source/devtools/front_end/sources/ObjectEventListenersSidebarPane.js
index 30383c563e6187ff4e8a3727a5c442f01763efe9..9e301778d84a237fea2654f165f7284dbe88abc6 100644
--- a/Source/devtools/front_end/sources/ObjectEventListenersSidebarPane.js
+++ b/Source/devtools/front_end/sources/ObjectEventListenersSidebarPane.js
@@ -35,7 +35,7 @@ WebInspector.ObjectEventListenersSidebarPane.prototype = {
return;
}
this._lastRequestedContext = executionContext;
- Promise.all([this._windowObjectInContext(executionContext)]).then(this._eventListenersView.addObjects.bind(this._eventListenersView));
+ Promise.all([this._windowObjectInContext(executionContext)]).then(this._eventListenersView.addObjects.bind(this._eventListenersView, false));
},
wasShown: function()

Powered by Google App Engine
This is Rietveld 408576698