Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> | |
| 4 <link rel="import" href="chrome://md-settings/i18n_setup.html"> | |
| 5 <link rel="import" href="chrome://md-settings/on_startup_page/startup_urls_page_ browser_proxy.html"> | |
| 6 <link rel="import" href="chrome://md-settings/settings_dialog.html"> | |
| 7 | |
| 8 <dom-module id="settings-startup-url-dialog"> | |
| 9 <template> | |
| 10 <style include="settings-shared"></style> | |
| 11 <settings-dialog id="dialog"> | |
| 12 <div class="title">$i18n{onStartupAddNewPage}</div> | |
| 13 <div class="body"> | |
| 14 <paper-input always-float-label id="url" | |
| 15 value="{{url_}}" on-input="validate_"> | |
| 16 $i18n{onStartupSiteUrl} | |
| 17 </paper-input> | |
| 18 </div> | |
| 19 <div class="button-container"> | |
| 20 <div class="action-buttons"> | |
| 21 <paper-button class="cancel-button" on-tap="onCancelTap_" | |
| 22 id="cancel">$i18n{cancel}</paper-button> | |
| 23 <paper-button id="add" class="action-button" on-tap="onAddTap_"> | |
|
Dan Beam
2016/04/08 23:24:42
i.e. disabled>
dpapad
2016/04/09 00:02:18
Done.
| |
| 24 $i18n{add}</paper-button> | |
| 25 </div> | |
| 26 </div> | |
| 27 </settings-dialog> | |
| 28 </template> | |
| 29 <script src="startup_url_dialog.js"></script> | |
| 30 </dom-module> | |
| OLD | NEW |