OLD | NEW |
1 <!-- TODO(akalin): Move to a three-pane view; node tree on the left | 1 <!-- TODO(akalin): Move to a three-pane view; node tree on the left |
2 (minus leaf nodes), tree contents list on the upper right, selected | 2 (minus leaf nodes), tree contents list on the upper right, selected |
3 item detail on the lower right. --> | 3 item detail on the lower right. --> |
4 | 4 |
5 <div id="sync-node-main"> | 5 <div id="sync-node-main"> |
6 <!-- TODO(akalin): Figure out how to get this element to be as tall | 6 <!-- TODO(akalin): Figure out how to get this element to be as tall |
7 as its container (style.height=100% doesn't work). Also fix | 7 as its container (style.height=100% doesn't work). Also fix |
8 behavior when tree is too tall (currently it makes you scroll the | 8 behavior when tree is too tall (currently it makes you scroll the |
9 entire page). --> | 9 entire page). --> |
10 <div id="sync-node-tree-container"> | 10 <div id="sync-node-tree-container"> |
11 <tree id="sync-node-tree"></tree> | 11 <tree id="sync-node-tree" icon-visibility="parent"></tree> |
12 </div> | 12 </div> |
13 <div id="sync-node-splitter"></div> | 13 <div id="sync-node-splitter"></div> |
14 <div id="sync-node-browser-container"> | 14 <div id="sync-node-browser-container"> |
15 <table id="node-browser"> | 15 <table id="node-browser"> |
16 <tr> | 16 <tr> |
17 <td>ID</td> | 17 <td>ID</td> |
18 <td jscontent="id"></td> | 18 <td jscontent="id"></td> |
19 </tr> | 19 </tr> |
20 <tr> | 20 <tr> |
21 <td>Modification Time</td> | 21 <td>Modification Time</td> |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 </tr> | 55 </tr> |
56 <tr> | 56 <tr> |
57 <td>Entry</td> | 57 <td>Entry</td> |
58 <td><pre jscontent="entry"></pre></td> | 58 <td><pre jscontent="entry"></pre></td> |
59 </tr> | 59 </tr> |
60 </table> | 60 </table> |
61 </div> | 61 </div> |
62 </div> | 62 </div> |
63 | 63 |
64 <script src="chrome://sync-internals/node_browser.js"></script> | 64 <script src="chrome://sync-internals/node_browser.js"></script> |
OLD | NEW |