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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/BezierEditor.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/ui/BezierEditor.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/BezierEditor.js b/third_party/WebKit/Source/devtools/front_end/ui/BezierEditor.js
index 68a56aa255d31d342bca5afaed884a29a3f6f3ae..31d32412efd25b77c5532d3b110dbcb7861fa495 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/BezierEditor.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/BezierEditor.js
@@ -41,12 +41,12 @@ WebInspector.BezierEditor = function()
minus.addEventListener("click", this._presetModifyClicked.bind(this, false));
plus.addEventListener("click", this._presetModifyClicked.bind(this, true));
this._label = this._header.createChild("span", "source-code bezier-display-value");
-}
+};
/** @enum {symbol} */
WebInspector.BezierEditor.Events = {
BezierChanged: Symbol("BezierChanged")
-}
+};
WebInspector.BezierEditor.Presets = [
[
@@ -73,7 +73,7 @@ WebInspector.BezierEditor.Presets = [
{ name: "Linear Out, Slow In", value: "cubic-bezier(0, 0, 0.2, 1)" },
{ name: "Out ยท Back", value: "cubic-bezier(0.18, 0.89, 0.32, 1.28)" }
]
-]
+];
/** @typedef {{presets: !Array.<{name: string, value: string}>, icon: !Element, presetIndex: number}} */
WebInspector.BezierEditor.PresetCategory;
@@ -279,4 +279,4 @@ WebInspector.BezierEditor.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698