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

Unified Diff: Source/web/resources/pickerCommon.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/calendarPicker.js ('k') | Source/web/resources/suggestionPicker.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/resources/pickerCommon.js
diff --git a/Source/web/resources/pickerCommon.js b/Source/web/resources/pickerCommon.js
index c190d3b8f787b2674695af288edc36405503df28..eb7c61f803314d824fac395b809c502e5c847186 100644
--- a/Source/web/resources/pickerCommon.js
+++ b/Source/web/resources/pickerCommon.js
@@ -217,7 +217,7 @@ function enclosingNodeOrSelfWithClass(selfNode, className)
return node;
}
return null;
-};
+}
/**
* @constructor
@@ -244,14 +244,14 @@ Picker.Actions = {
Picker.prototype.submitValue = function(value) {
window.pagePopupController.setValue(value);
window.pagePopupController.closePopup();
-}
+};
Picker.prototype.handleCancel = function() {
window.pagePopupController.closePopup();
-}
+};
Picker.prototype.chooseOtherColor = function() {
window.pagePopupController.setValueAndClosePopup(Picker.Actions.ChooseOtherColor, "");
-}
+};
Picker.prototype.cleanup = function() {};
« no previous file with comments | « Source/web/resources/calendarPicker.js ('k') | Source/web/resources/suggestionPicker.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698