OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <!-- | 2 <!-- |
3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. |
4 -- Use of this source code is governed by a BSD-style license that can be | 4 -- Use of this source code is governed by a BSD-style license that can be |
5 -- found in the LICENSE file. | 5 -- found in the LICENSE file. |
6 --> | 6 --> |
7 <html> | 7 <html> |
8 <head> | 8 <head> |
9 <script> | 9 <script> |
10 var css = | 10 var css = |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 document.write('<script src="js/mock_chrome.js"><\57script>'); | 63 document.write('<script src="js/mock_chrome.js"><\57script>'); |
64 })(); | 64 })(); |
65 | 65 |
66 </script> | 66 </script> |
67 | 67 |
68 <link rel="stylesheet" href="css/file_manager.css"></link> | 68 <link rel="stylesheet" href="css/file_manager.css"></link> |
69 | 69 |
70 <script src="js/util.js"></script> | 70 <script src="js/util.js"></script> |
71 <script src="js/file_manager.js"></script> | 71 <script src="js/file_manager.js"></script> |
72 <script src="js/main.js"></script> | 72 <script src="js/main.js"></script> |
| 73 |
| 74 <!-- We have to set some default title, or chrome will use the page |
| 75 -- name. As soon as we init and change to a directory, we'll use |
| 76 -- the directory as the page title. Until then, have a unicode glyph |
| 77 -- of a tape reel. |
| 78 --> |
| 79 <title>✇</title> |
73 </head> | 80 </head> |
74 <body i18n-values=".style.fontFamily:BODY_FONT_FAMILY; | 81 <body i18n-values=".style.fontFamily:BODY_FONT_FAMILY; |
75 .style.fontSize:BODY_FONT_SIZE"> | 82 .style.fontSize:BODY_FONT_SIZE"> |
76 <div class=dialog-title visibleif='this.dialogType_ != "full-page"' | 83 <div class=dialog-title visibleif='this.dialogType_ != "full-page"' |
77 >[TITLE]</div> | 84 >[TITLE]</div> |
78 <div class=dialog-header> | 85 <div class=dialog-header> |
79 <div class=breadcrumbs></div> | 86 <div class=breadcrumbs></div> |
80 <!-- TODO(rginda): Add icons instead of unicode glyphs --> | 87 <!-- TODO(rginda): Add icons instead of unicode glyphs --> |
81 <button class=detail-view | 88 <button class=detail-view |
82 ><img src='images/icon-detail-view.png'></button | 89 ><img src='images/icon-detail-view.png'></button |
(...skipping 30 matching lines...) Expand all Loading... |
113 <input type=text class=filename-input spellcheck=false | 120 <input type=text class=filename-input spellcheck=false |
114 visibleif='this.dialogType_ == "saveas-file"'> | 121 visibleif='this.dialogType_ == "saveas-file"'> |
115 <div class=horizontal-spacer></div> | 122 <div class=horizontal-spacer></div> |
116 <button class=ok disabled>[OK]</button> | 123 <button class=ok disabled>[OK]</button> |
117 <button class=cancel i18n-content=CANCEL_LABEL>[CANCEL]</button> | 124 <button class=cancel i18n-content=CANCEL_LABEL>[CANCEL]</button> |
118 </div> | 125 </div> |
119 | 126 |
120 <script>init();</script> | 127 <script>init();</script> |
121 </body> | 128 </body> |
122 </html> | 129 </html> |
OLD | NEW |