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

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

Issue 9316086: Fix JavaScript errors in options2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: new violations found after rebase Created 8 years, 10 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_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 c66be74ac860a7a630d2d4715efdd69c7a8b45fe..bcf3bdcff3aaf513f73624b28200ad61904f91be 100644
--- a/chrome/browser/resources/options2/autofill_edit_address_overlay.js
+++ b/chrome/browser/resources/options2/autofill_edit_address_overlay.js
@@ -239,7 +239,7 @@ cr.define('options', function() {
countryCode: '',
name: '---',
disabled: true
- }
+ };
countries.unshift(emptyCountry, defaultCountry, separator);
// Add the countries to the country <select> list.
@@ -247,7 +247,7 @@ cr.define('options', function() {
for (var i = 0; i < countries.length; i++) {
var country = new Option(countries[i].name, countries[i].countryCode);
country.disabled = countries[i].disabled;
- countryList.appendChild(country)
+ countryList.appendChild(country);
}
},
« no previous file with comments | « chrome/browser/resources/options2/advanced_options.js ('k') | chrome/browser/resources/options2/autofill_options_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698