Chromium Code Reviews| 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_(); | 
| }, |