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

Unified Diff: Source/web/resources/suggestionPicker.js

Issue 223973002: Add some missing semi-colons in embedded JavaScript. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « Source/web/resources/pickerCommon.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/resources/suggestionPicker.js
diff --git a/Source/web/resources/suggestionPicker.js b/Source/web/resources/suggestionPicker.js
index 2d4bada41bfadc79ef763ec1a86788df8e2e2ccd..7db37d1b532f0ce910be51f60d1bc1b2916cf3d0 100644
--- a/Source/web/resources/suggestionPicker.js
+++ b/Source/web/resources/suggestionPicker.js
@@ -38,7 +38,7 @@ function SuggestionPicker(element, config) {
this._handleBodyKeyDownBound = this._handleBodyKeyDown.bind(this);
document.body.addEventListener("keydown", this._handleBodyKeyDownBound);
this._element.addEventListener("mouseout", this._handleMouseOut.bind(this), false);
-};
+}
SuggestionPicker.prototype = Object.create(Picker.prototype);
SuggestionPicker.NumberOfVisibleEntries = 20;
« no previous file with comments | « Source/web/resources/pickerCommon.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698