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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js

Issue 1907263002: DevTools: Fix all outstanding JavaScript style issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove yoda disable. fix throw parens Created 4 years, 8 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/sources/WatchExpressionsSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
index dfa6c6571a46f40fbf355dc31818458628e16a1c..2c033c86107ba788ea2d805fc6ee23eb5bedc95e 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
@@ -340,7 +340,7 @@ WebInspector.WatchExpression.prototype = {
{
this._result = result;
- var headerElement= createElementWithClass("div", "watch-expression-header");
+ var headerElement = createElementWithClass("div", "watch-expression-header");
var deleteButton = headerElement.createChild("button", "watch-expression-delete-button");
deleteButton.title = WebInspector.UIString("Delete watch expression");
deleteButton.addEventListener("click", this._deleteWatchExpression.bind(this), false);

Powered by Google App Engine
This is Rietveld 408576698