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

Unified Diff: ui/webui/resources/js/cr/ui/alert_overlay.js

Issue 2902033002: WebUI: Fix violations of no-extra-semi lint rule. (Closed)
Patch Set: Created 3 years, 7 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: ui/webui/resources/js/cr/ui/alert_overlay.js
diff --git a/ui/webui/resources/js/cr/ui/alert_overlay.js b/ui/webui/resources/js/cr/ui/alert_overlay.js
index f3962d1867a9c6f22d98aa0c129e3f9e4948807a..4d2ff814ff7f6f1c6980e31a714732ba02235fdf 100644
--- a/ui/webui/resources/js/cr/ui/alert_overlay.js
+++ b/ui/webui/resources/js/cr/ui/alert_overlay.js
@@ -35,7 +35,7 @@ cr.define('alertOverlay', function() {
okButton.clickCallback = null;
cancelButton.clickCallback = null;
});
- };
+ }
/**
* Updates the alert overlay with the given message, button titles, and
@@ -72,7 +72,7 @@ cr.define('alertOverlay', function() {
cancelButton.textContent = opt_cancelTitle;
cancelButton.hidden = !opt_cancelTitle;
cancelButton.clickCallback = opt_cancelCallback;
- };
+ }
// Export
return {initialize: initialize, setValues: setValues};
« no previous file with comments | « chrome/browser/resources/settings/site_settings/cookie_tree_node.js ('k') | ui/webui/resources/js/webui_resource_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698