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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/EventListenersWidget.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 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: third_party/WebKit/Source/devtools/front_end/elements/EventListenersWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/EventListenersWidget.js b/third_party/WebKit/Source/devtools/front_end/elements/EventListenersWidget.js
index 86886ee248d6d5606f56fa33201a00b92c23e016..2996e71c42b95b76f90b58ad97ac9675738ec7df 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/EventListenersWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/EventListenersWidget.js
@@ -74,13 +74,13 @@ WebInspector.EventListenersWidget = function()
WebInspector.context.addFlavorChangeListener(WebInspector.DOMNode, this.update, this);
this.update();
-}
+};
WebInspector.EventListenersWidget.DispatchFilterBy = {
All : "All",
Blocking : "Blocking",
Passive : "Passive"
-}
+};
WebInspector.EventListenersWidget._objectGroupName = "event-listeners-panel";
@@ -177,4 +177,4 @@ WebInspector.EventListenersWidget.prototype = {
},
__proto__: WebInspector.ThrottledWidget.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698