| Index: chrome/browser/resources/options2/autofill_edit_address_overlay.js
|
| diff --git a/chrome/browser/resources/options2/autofill_edit_address_overlay.js b/chrome/browser/resources/options2/autofill_edit_address_overlay.js
|
| index f41fd8cf4262d22e94a88bc33955765bb9145616..9d426403761cead845a3f6f578f21d576d97a9d3 100644
|
| --- a/chrome/browser/resources/options2/autofill_edit_address_overlay.js
|
| +++ b/chrome/browser/resources/options2/autofill_edit_address_overlay.js
|
| @@ -36,11 +36,11 @@ cr.define('options', function() {
|
| var self = this;
|
| $('autofill-edit-address-cancel-button').onclick = function(event) {
|
| self.dismissOverlay_();
|
| - }
|
| + };
|
| $('autofill-edit-address-apply-button').onclick = function(event) {
|
| self.saveAddress_();
|
| self.dismissOverlay_();
|
| - }
|
| + };
|
|
|
| self.guid = '';
|
| self.populateCountryList_();
|
| @@ -158,11 +158,11 @@ cr.define('options', function() {
|
| $('addr-line-2').oninput = $('city').oninput = $('state').oninput =
|
| $('postal-code').oninput = function(event) {
|
| self.inputFieldChanged_();
|
| - }
|
| + };
|
|
|
| $('country').onchange = function(event) {
|
| self.countryChanged_();
|
| - }
|
| + };
|
| },
|
|
|
| /**
|
|
|