OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title>Settings</title> | 5 <title>Settings</title> |
6 <base href="chrome://md-settings"> | 6 <base href="chrome://md-settings"> |
7 <script src="chrome://resources/js/polymer_config.js"></script> | 7 <script src="chrome://resources/js/polymer_config.js"></script> |
8 <link rel="import" href="chrome://md-settings/i18n_setup.html"> | 8 <link rel="import" href="chrome://md-settings/i18n_setup.html"> |
9 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"
> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"
> |
10 <link rel="import" href="chrome://md-settings/settings_ui/settings_ui.html"> | 10 <link rel="import" href="chrome://md-settings/settings_ui/settings_ui.html"> |
11 <link rel="import" href="chrome://md-settings/prefs/prefs.html"> | 11 <link rel="import" href="chrome://md-settings/prefs/prefs.html"> |
12 </head> | 12 </head> |
13 <body> | 13 <body> |
14 | 14 |
15 <dom-module id="cr-settings"> | 15 <template is="dom-bind"> |
16 <template> | 16 <settings-prefs id="prefs" prefs="{{prefs}}"></settings-prefs> |
17 <settings-prefs id="prefs" prefs="{{prefs_}}"></settings-prefs> | 17 <settings-ui prefs="{{prefs}}"></settings-ui> |
18 <settings-ui prefs="{{prefs_}}"></settings-ui> | 18 </template> |
19 </template> | |
20 <script src="settings.js"></script> | |
21 </dom-module> | |
22 | 19 |
23 <cr-settings></cr-settings> | |
24 <script src="chrome://resources/js/i18n_template.js"></script> | 20 <script src="chrome://resources/js/i18n_template.js"></script> |
25 </body> | 21 </body> |
26 </html> | 22 </html> |
OLD | NEW |