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 <link rel="import" | 6 <link rel="import" |
7 href="chrome://resources/cr_elements/cr_toggle_button/cr_toggle_button.htm l"> | 7 href="chrome://resources/cr_elements/cr_toggle_button/cr_toggle_button.htm l"> |
8 <link rel="import" href="chrome://resources/cr_elements/cr_input/cr_input.html "> | |
michaelpg
2015/02/13 00:08:28
nit: let's ask dbeam whether the 80-char limit app
Jeremy Klein
2015/02/13 00:22:54
I thought it was 100 for html, but it could be dif
michaelpg
2015/02/18 00:17:17
It's definitely 80 for html in Chromium. I'd still
| |
8 <link rel="import" | 9 <link rel="import" |
9 href="chrome://resources/polymer/paper-button/paper-button.html"> | 10 href="chrome://resources/polymer/paper-button/paper-button.html"> |
10 </head> | 11 </head> |
11 <body> | 12 <body> |
12 <header> | 13 <header> |
13 <h1>Settings</h1> | 14 <h1>Settings</h1> |
14 </header> | 15 </header> |
15 <div class="main"> | 16 <div class="main"> |
16 <paper-button id="manage-button" raised>Manage</paper-button> | 17 <paper-button id="manage-button" raised>Manage</paper-button> |
17 <cr-toggle-button checked></cr-toggle-button> | 18 <cr-toggle-button checked></cr-toggle-button> |
19 <section> | |
20 <h3>cr-input</h3> | |
21 <cr-input></cr-input> | |
22 </section> | |
18 </div> | 23 </div> |
19 </body> | 24 </body> |
20 </html> | 25 </html> |
OLD | NEW |