| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/html/util.html"> | 2 <link rel="import" href="chrome://resources/html/util.html"> |
| 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 5 <link rel="import" href="chrome://md-settings/settings_dialog.html"> | 5 <link rel="import" href="chrome://md-settings/settings_dialog.html"> |
| 6 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 6 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
| 7 <link rel="import" href="chrome://md-settings/on_startup_page/startup_urls_page_
browser_proxy.html"> | 7 <link rel="import" href="chrome://md-settings/on_startup_page/startup_urls_page_
browser_proxy.html"> |
| 8 | 8 |
| 9 <dom-module id="settings-startup-urls-page"> | 9 <dom-module id="settings-startup-urls-page"> |
| 10 <link rel="import" type="css" href="on_startup_shared.css"> | 10 <link rel="import" type="css" href="on_startup_shared.css"> |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 <div class="body"> | 43 <div class="body"> |
| 44 <paper-input class="flex" always-float-label | 44 <paper-input class="flex" always-float-label |
| 45 i18n-values="label:onStartupSiteUrl" value="{{newUrl_}}"> | 45 i18n-values="label:onStartupSiteUrl" value="{{newUrl_}}"> |
| 46 </paper-input> | 46 </paper-input> |
| 47 </div> | 47 </div> |
| 48 <div class="button-container"> | 48 <div class="button-container"> |
| 49 <div class="action-buttons"> | 49 <div class="action-buttons"> |
| 50 <paper-button class="cancel-button" on-tap="onCancelTap_" | 50 <paper-button class="cancel-button" on-tap="onCancelTap_" |
| 51 id="cancel" i18n-content="cancel"></paper-button> | 51 id="cancel" i18n-content="cancel"></paper-button> |
| 52 <paper-button class="action-button" on-tap="onAddTap_" | 52 <paper-button class="action-button" on-tap="onAddTap_" |
| 53 i18n-content="add" disabled="[[!isAddEnabled_(newUrl_)]]"> | 53 i18n-content="add" disabled="[[!isNewUrlValid_]]"> |
| 54 </paper-button> | 54 </paper-button> |
| 55 </div> | 55 </div> |
| 56 </div> | 56 </div> |
| 57 </settings-dialog> | 57 </settings-dialog> |
| 58 </template> | 58 </template> |
| 59 <script src="startup_urls_page.js"></script> | 59 <script src="startup_urls_page.js"></script> |
| 60 </dom-module> | 60 </dom-module> |
| OLD | NEW |