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

Unified Diff: chrome/browser/resources/options2/certificate_backup_overlay.js

Issue 9113052: [uber page] Cleaning up some nits I found while mucking around in options2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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: chrome/browser/resources/options2/certificate_backup_overlay.js
diff --git a/chrome/browser/resources/options2/certificate_backup_overlay.js b/chrome/browser/resources/options2/certificate_backup_overlay.js
index e700347da07734bf6bad301dd362db05a4b3c1f1..7ae52504e396ddd831c00b6d8441e7067ba32544 100644
--- a/chrome/browser/resources/options2/certificate_backup_overlay.js
+++ b/chrome/browser/resources/options2/certificate_backup_overlay.js
@@ -30,14 +30,14 @@ cr.define('options', function() {
var self = this;
$('certificateBackupCancelButton').onclick = function(event) {
self.cancelBackup_();
- }
+ };
$('certificateBackupOkButton').onclick = function(event) {
self.finishBackup_();
- }
+ };
$('certificateBackupPassword').oninput =
Tyler Breisacher (Chromium) 2012/01/25 07:01:14 While we're here, this looks like an incomplete st
Dan Beam 2012/01/25 07:14:52 I'll add jhawkins as I need a committer and OWNERS
James Hawkins 2012/01/26 01:38:04 Indentation is required, so I'd prefer a temp var
Dan Beam 2012/01/26 04:00:36 Done.
$('certificateBackupPassword2').oninput = function(event) {
self.comparePasswords_();
- }
+ };
self.clearInputFields_();
},

Powered by Google App Engine
This is Rietveld 408576698