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

Unified Diff: Source/web/resources/calendarPicker.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 | « no previous file | Source/web/resources/pickerCommon.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/resources/calendarPicker.js
diff --git a/Source/web/resources/calendarPicker.js b/Source/web/resources/calendarPicker.js
index e1c01770dc99f637ad72646dd1b3a31f75c35b78..a41876881e6622c5cd5131335dd1940a4b0c61e6 100644
--- a/Source/web/resources/calendarPicker.js
+++ b/Source/web/resources/calendarPicker.js
@@ -65,7 +65,7 @@ var global = {
// Utility functions
/**
- * @return {!bool}
+ * @return {!boolean}
*/
function hasInaccuratePointingDevice() {
return matchMedia("(pointer: coarse)").matches;
@@ -4038,7 +4038,7 @@ CalendarPicker.prototype.onBodyKeyDown = function(event) {
event.stopPropagation();
event.preventDefault();
}
-}
+};
if (window.dialogArguments) {
initialize(dialogArguments);
« no previous file with comments | « no previous file | Source/web/resources/pickerCommon.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698