| Index: chrome/browser/resources/settings/on_startup_page/startup_urls_page.js
|
| diff --git a/chrome/browser/resources/settings/on_startup_page/startup_urls_page.js b/chrome/browser/resources/settings/on_startup_page/startup_urls_page.js
|
| index 9bce9e97b960c5ab00f652ffabac3385e336fb0d..c194a7d83c3257e9efeb7c9a42203ea3be603b5f 100644
|
| --- a/chrome/browser/resources/settings/on_startup_page/startup_urls_page.js
|
| +++ b/chrome/browser/resources/settings/on_startup_page/startup_urls_page.js
|
| @@ -56,10 +56,13 @@ Polymer({
|
| if (!value)
|
| return;
|
| this.push('prefs.session.startup_urls.value', value);
|
| - this.newUrl = undefined;
|
| + this.newUrl = '';
|
| },
|
|
|
| - /** @private */
|
| + /**
|
| + * @param {!{model: !{index: number}}} e
|
| + * @private
|
| + */
|
| onRemoveUrlTap_: function(e) {
|
| this.splice('prefs.session.startup_urls.value', e.model.index, 1);
|
| },
|
|
|