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

Unified Diff: chrome/browser/resources/options2/autofill_edit_creditcard_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: jhawkins' review comments 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/autofill_edit_creditcard_overlay.js
diff --git a/chrome/browser/resources/options2/autofill_edit_creditcard_overlay.js b/chrome/browser/resources/options2/autofill_edit_creditcard_overlay.js
index 8402a10ea019d24a55e04d68f65987cd7c33e7d3..d4091750906473210189281e04809c9d8f0eb8a5 100644
--- a/chrome/browser/resources/options2/autofill_edit_creditcard_overlay.js
+++ b/chrome/browser/resources/options2/autofill_edit_creditcard_overlay.js
@@ -33,11 +33,11 @@ cr.define('options', function() {
var self = this;
$('autofill-edit-credit-card-cancel-button').onclick = function(event) {
self.dismissOverlay_();
- }
+ };
$('autofill-edit-credit-card-apply-button').onclick = function(event) {
self.saveCreditCard_();
self.dismissOverlay_();
- }
+ };
self.guid_ = '';
self.hasEditedNumber_ = false;

Powered by Google App Engine
This is Rietveld 408576698