OLD | NEW |
---|---|
(Empty) | |
1 <div id="profiles-manage-overlay" class="page" hidden> | |
James Hawkins
2011/07/20 01:24:22
Change the ID and similarly-named IDs.
binji
2011/07/20 01:56:17
Done.
| |
2 <!-- Dialog for managing 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"> | |
10 </div> | |
11 <div id="profiles-manage-duplicate-name-error" | |
12 class="hiding" i18n-content="profilesManageDuplicateNameError"> | |
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" i18n-content="ok"></button> | |
21 <button id="profiles-manage-cancel" i18n-content="cancel"></button> | |
22 </div> | |
23 </div> | |
24 </div> | |
25 <!-- Dialog for deleting profiles. --> | |
26 <div id="profiles-manage-overlay-delete" hidden> | |
27 <h1 i18n-content="profilesDeleteTitle"></h1> | |
28 <div class="content-area"> | |
29 <div id="profiles-delete-message"></div> | |
30 </div> | |
31 <div class="action-area"> | |
32 <div class="button-strip"> | |
33 <button id="profiles-delete-ok" | |
34 i18n-content="profilesDeleteOK"></button> | |
35 <button id="profiles-delete-cancel" i18n-content="cancel"></button> | |
36 </div> | |
37 </div> | |
38 </div> | |
39 </div> | |
OLD | NEW |