OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <meta charset="utf-8"> | |
5 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.htm l"> | |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper- button.html"> | |
7 <link rel="stylesheet" href="sync-confirmation.css"></link> | |
8 <script src="chrome://resources/js/cr.js"></script> | |
9 <script src="chrome://resources/js/load_time_data.js"></script> | |
10 <script src="chrome://resources/js/util.js"></script> | |
11 <script src="sync-confirmation.js"></script> | |
12 </head> | |
13 <body> | |
14 <div class="container"> | |
15 <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div> | |
16 <div class="details"> | |
17 <div class="picture-container"> | |
18 <div class="picture"> | |
19 <img id="profile-picture"></img> | |
20 <div class="checkmark-bubble"></div> | |
21 </div> | |
22 </div> | |
23 <div class="sync-message" i18n-values=".innerHTML:syncConfirmationBody"> </div> | |
Dan Beam
2016/01/13 23:45:22
<div class="sync-message"
i18n-values=".innerH
anthonyvd
2016/01/18 21:40:08
Done.
Should the long <link> tags be broken up as
Dan Beam
2016/01/21 03:57:33
no (because they're URLs)
anthonyvd
2016/01/21 22:36:11
Acknowledged.
| |
24 <div class="action-container"> | |
25 <paper-button id="confirmButton" i18n-content="syncConfirmationConfirm Label"></paper-button> | |
Dan Beam
2016/01/13 23:45:22
<paper-button id="confirmButton"
i18n-content=
anthonyvd
2016/01/18 21:40:08
Done.
| |
26 <paper-button id="undoButton" i18n-content="syncConfirmationUndoLabel" ></paper-button> | |
Dan Beam
2016/01/13 23:45:22
<paper-button id="undoButton"
i18n-content="sy
anthonyvd
2016/01/18 21:40:08
Done.
| |
27 </div> | |
28 </div> | |
29 </div> | |
30 </body> | |
31 <script src="chrome://sync-confirmation/strings.js"></script> | |
32 <script src="chrome://resources/js/i18n_template.js"></script> | |
33 </html> | |
OLD | NEW |