OLD | NEW |
---|---|
(Empty) | |
1 <div id="profiles-manage-overlay" class="page" hidden> | |
2 <!-- dialog for managing profiles --> | |
James Hawkins
2011/07/19 20:22:09
Dialog...profiles.
| |
3 <div id="profiles-manage-overlay-manage" hidden> | |
4 <h1 i18n-content="profilesManageTitle"></h1> | |
5 <div id="profiles-manage-content" class="content-area"> | |
6 <div id="profiles-manage-name-div"> | |
7 <span id="profiles-manage-name-label" | |
8 i18n-content="profilesManageNameLabel"></span> | |
9 <input id="profiles-manage-name" type="text"></input> | |
James Hawkins
2011/07/19 20:22:09
input element does not have closing tag.
| |
10 </div> | |
11 <div id="profiles-manage-duplicate-name-error" | |
12 class="hiding" i18n-content="profilesManageDuplicateNameError"> | |
James Hawkins
2011/07/19 20:22:09
What is the 'hiding' class? I can't find it anywhe
| |
13 </div> | |
14 <div id="profiles-manage-icon-label" | |
15 i18n-content="profilesManageIconLabel"></div> | |
16 <list id="profiles-manage-icon-list"></list> | |
17 </div> | |
18 <div class="action-area"> | |
19 <div class="button-strip"> | |
20 <button id="profiles-manage-ok" | |
21 i18n-content="profilesManageOK"></button> | |
James Hawkins
2011/07/19 20:22:09
Use the options-global OK and cancel strings.
| |
22 <button id="profiles-manage-cancel" | |
23 i18n-content="profilesManageCancel"></button> | |
24 </div> | |
25 </div> | |
26 </div> | |
27 <!-- dialog for deleting profiles --> | |
28 <div id="profiles-manage-overlay-delete" hidden> | |
29 <h1 i18n-content="profilesDeleteTitle"></h1> | |
30 <div class="content-area"> | |
31 <div id="profiles-delete-message"></div> | |
32 </div> | |
33 <div class="action-area"> | |
34 <div class="button-strip"> | |
35 <button id="profiles-delete-ok" | |
36 i18n-content="profilesDeleteOK"></button> | |
37 <button id="profiles-delete-cancel" | |
38 i18n-content="profilesDeleteCancel"></button> | |
39 </div> | |
40 </div> | |
41 </div> | |
42 </div> | |
OLD | NEW |