OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>$i18n{headerText}</title> | |
5 | |
6 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | |
7 <link rel="import" href="chrome://resources/html/cr.html"> | |
8 <link rel="import" href="chrome://resources/html/polymer.html"> | |
9 <link rel="import" href="chrome://resources/html/util.html"> | |
10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.h tml"> | |
11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml"> | |
12 | |
13 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | |
14 <link rel="stylesheet" href="/welcome.css"> | |
15 | |
16 <script src="/welcome.js"></script> | |
17 </head> | |
18 <body> | |
19 <template is="dom-bind" id="inline-app"> | |
20 <div class="content"> | |
21 <div class="header-logo"></div> | |
22 <div class="heading">$i18n{headerText}</div> | |
23 <div class="sections"> | |
24 <div class$="[[computeClasses(isCombined)]]"> | |
25 <div class="section-heading" on-tap="onToggle"> | |
26 <div class="section-heading-text"> | |
27 $i18n{defaultBrowserSubheaderText} | |
28 </div> | |
29 <template is="dom-if" if="[[isCombined]]"> | |
30 <iron-icon class="section-heading-expand" icon="cr:expand-more"> | |
31 </iron-icon> | |
32 </template> | |
33 </div> | |
34 <ol class="section-steps"> | |
35 <li> | |
36 <a href="#" on-tap="onOpenSettings">$i18n{openSettingsText}</a> | |
37 </li> | |
38 <li> | |
39 <div>$i18nRaw{clickEdgeText}</div> | |
40 <div class="screenshot-image" id="screenshot-image--default"> | |
41 <div class="screenshot-html-overlay" | |
42 id="screenshot-html-overlay--browser"> | |
michaelpg
2016/10/24 21:30:08
throughout: 4-space indent (not align)
Patrick Monette
2016/10/24 23:11:33
Done.
| |
43 <div>$i18n{webBrowserLabel}</div> | |
44 </div> | |
45 <div class="screenshot-html-overlay" | |
46 id="screenshot-html-overlay--edge"> | |
47 <div>$i18n{microsoftEdgeLabel}</div> | |
48 </div> | |
49 </div> | |
50 </li> | |
51 <li>$i18nRaw{clickSelectChrome}</li> | |
52 </ol> | |
53 </div> | |
54 <template is="dom-if" if="[[isCombined]]"> | |
55 <div class="section expandable"> | |
56 <div class="section-heading" on-tap="onToggle"> | |
57 <div class="section-heading-text">$i18n{pinSubheaderText}</div> | |
58 <iron-icon class="section-heading-expand" icon="cr:expand-more"> | |
59 </iron-icon> | |
60 </div> | |
61 <ol class="section-steps"> | |
62 <li>$i18nRaw{rightClickText}</li> | |
63 <li> | |
64 <div>$i18nRaw{pinInstructionText}</div> | |
65 <div class="screenshot-image" id="screenshot-image--taskbar"> | |
66 <div class="screenshot-html-overlay" | |
67 id="screenshot-html-overlay--taskbar"> | |
68 <div>$i18n{pinToTaskbarLabel}</div> | |
69 </div> | |
70 <div class="screenshot-html-overlay" | |
71 id="screenshot-html-overlay--icon"> | |
72 </div> | |
73 </div> | |
74 </li> | |
75 </ol> | |
76 </div> | |
77 </template> | |
78 </div> | |
79 <a href="#" class="button" on-tap="onContinue">$i18n{continueText}</a> | |
80 </div> | |
81 </template> | |
82 </body> | |
83 </html> | |
OLD | NEW |