OLD | NEW |
---|---|
1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v0_8/polymer/polymer.html"> |
2 <link rel="import" href="chrome://resources/polymer/core-label/core-label.html"> | 2 <link rel="import" href="chrome://resources/polymer/v0_8/iron-flex-layout/classe s/iron-flex-layout.html"> |
3 <link rel="import" href="chrome://resources/polymer/paper-input/paper-input.html "> | 3 <link rel="import" href="chrome://resources/polymer/v0_8/paper-input/paper-input .html"> |
4 <link rel="import" href="chrome://resources/polymer/paper-shadow/paper-shadow.ht ml"> | 4 <link rel="import" href="chrome://resources/polymer/v0_8/paper-material/paper-ma terial.html"> |
5 <link rel="import" href="chrome://resources/cr_elements/cr_button/cr_button.html "> | 5 <link rel="import" href="chrome://resources/cr_elements/v0_8/cr_button/cr_button .html"> |
6 <link rel="import" href="chrome://resources/cr_elements/cr_input/cr_input.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/v0_8/cr_input/cr_input.h tml"> |
7 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html"> | 7 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html"> |
8 <link rel="import" href="downloads_page_style.html"> | |
9 | 8 |
10 <polymer-element name="cr-settings-downloads-page"> | 9 <dom-module id="cr-settings-downloads-page"> |
10 <link rel="import" type="css" href="chrome://md-settings/settings_page/setting s_page.css"> | |
11 <link rel="import" type="css" href="downloads_page.css"> | |
11 <template> | 12 <template> |
12 <link rel="stylesheet" href="chrome://md-settings/settings_page/settings_pag e.css"> | 13 <paper-material> |
13 <core-style ref="downloadsPageStyle"></core-style> | 14 <div class="horizontal layout center"> |
14 <paper-shadow layout vertical cross-fade> | 15 <div class="layout horizontal center"> |
15 <div horizontal layout center> | |
16 <core-label horizontal layout center> | |
17 <span class="location-label" i18n-content="downloadsLocationLabel"></s pan> | 16 <span class="location-label" i18n-content="downloadsLocationLabel"></s pan> |
michaelpg
2015/05/12 05:52:14
Why not make this a good old <label for=""> since
Jeremy Klein
2015/05/12 06:19:27
Good point :-). Done.
| |
18 <cr-input id="downloadsPath" floatingLabel="false" | 17 <cr-input id="downloadsPath" floatingLabel="false" |
19 value="{{prefs.settings.download.default_directory.value}}" readon ly for> | 18 value="{{prefs.settings.download.default_directory.value}}" readon ly> |
20 </cr-input> | 19 </cr-input> |
21 </core-label> | 20 </div> |
22 <cr-button id="changeDownloadsPath" on-click="{{selectDownloadLocation}} " | 21 <cr-button id="changeDownloadsPath" on-click="selectDownloadLocation_" |
23 i18n-content="downloadsChangeLocationButton"> | 22 i18n-content="downloadsChangeLocationButton"> |
24 </cr-button> | 23 </cr-button> |
25 </div> | 24 </div> |
26 <cr-settings-checkbox | 25 <cr-settings-checkbox |
27 pref="{{prefs.settings.download.prompt_for_download}}" | 26 pref="{{prefs.settings.download.prompt_for_download}}" |
28 i18n-values="label:downloadsPromptForDownloadLabel"> | 27 i18n-values="label:downloadsPromptForDownloadLabel"> |
29 </cr-settings-checkbox> | 28 </cr-settings-checkbox> |
30 </paper-shadow> | 29 </paper-material> |
31 </template> | 30 </template> |
32 <script src="downloads_page.js"></script> | 31 <script src="downloads_page.js"></script> |
33 </polymer-element> | 32 </dom-module> |
OLD | NEW |