OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html i18n-values="dir:textdirection"> | 2 <html i18n-values="dir:textdirection"> |
3 <!-- | 3 <!-- |
4 | 4 |
5 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 5 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
6 Use of this source code is governed by a BSD-style license that can be | 6 Use of this source code is governed by a BSD-style license that can be |
7 found in the LICENSE file. | 7 found in the LICENSE file. |
8 | 8 |
9 --> | 9 --> |
10 <head> | 10 <head> |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
67 </form> | 67 </form> |
68 </div> | 68 </div> |
69 | 69 |
70 <div class="summary"> | 70 <div class="summary"> |
71 <h3 i18n-content="title"></h3> | 71 <h3 i18n-content="title"></h3> |
72 <button menu="#organize-menu" tabindex="-1" i18n-content="organize_menu"></but ton> | 72 <button menu="#organize-menu" tabindex="-1" i18n-content="organize_menu"></but ton> |
73 </div> | 73 </div> |
74 | 74 |
75 <div class=main> | 75 <div class=main> |
76 <div id=tree-container> | 76 <div id=tree-container> |
77 <tree id=tree tabindex=2 role="tree"></tree> | 77 <tree id=tree tabindex=2 role="tree" icon-visibility="all"></tree> |
arv (Not doing code reviews)
2011/10/31 18:44:54
this can be removed now
flackr
2011/11/01 17:06:14
Done.
| |
78 </div> | 78 </div> |
79 <div class=splitter></div> | 79 <div class=splitter></div> |
80 <list id=list tabindex=2></list> | 80 <list id=list tabindex=2></list> |
81 </div> | 81 </div> |
82 | 82 |
83 <!-- Organize menu --> | 83 <!-- Organize menu --> |
84 <command i18n-values=".label:rename_folder" id="rename-folder-command"></command > | 84 <command i18n-values=".label:rename_folder" id="rename-folder-command"></command > |
85 <command i18n-values=".label:edit" id="edit-command"></command> | 85 <command i18n-values=".label:edit" id="edit-command"></command> |
86 <command i18n-values=".label:show_in_folder" id="show-in-folder-command"></comma nd> | 86 <command i18n-values=".label:show_in_folder" id="show-in-folder-command"></comma nd> |
87 <command i18n-values=".label:cut" id="cut-command"></command> | 87 <command i18n-values=".label:cut" id="cut-command"></command> |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
142 <hr> | 142 <hr> |
143 <button command="#add-new-bookmark-command"></button> | 143 <button command="#add-new-bookmark-command"></button> |
144 <button command="#new-folder-command"></button> | 144 <button command="#new-folder-command"></button> |
145 </menu> | 145 </menu> |
146 | 146 |
147 <div id="drop-overlay"></div> | 147 <div id="drop-overlay"></div> |
148 | 148 |
149 <script src="js/main.js"></script> | 149 <script src="js/main.js"></script> |
150 </body> | 150 </body> |
151 </html> | 151 </html> |
OLD | NEW |