Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: chrome/browser/resources/file_manager/main.html

Issue 9349015: [filebrowser] Save sorting field/order for modal dialogs, show spinner when scanning directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Spinner itself Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_manager.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2012 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 i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;">
8 <head> 8 <head>
9 <if expr="0"> 9 <if expr="0">
10 <!-- <if ... /if> is removed while flattening HTML. --> 10 <!-- <if ... /if> is removed while flattening HTML. -->
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 <div class=breadcrumbs></div> 164 <div class=breadcrumbs></div>
165 <!-- The outter div is a hack to remove margin between buttons. --> 165 <!-- The outter div is a hack to remove margin between buttons. -->
166 <div><button class="detail-view" tabindex="4" disabled></button></div> 166 <div><button class="detail-view" tabindex="4" disabled></button></div>
167 <div><button class="thumbnail-view" tabindex="5"></button></div> 167 <div><button class="thumbnail-view" tabindex="5"></button></div>
168 </div> 168 </div>
169 <div class=dialog-body> 169 <div class=dialog-body>
170 <div class=filelist-panel> 170 <div class=filelist-panel>
171 <div class=list-container> 171 <div class=list-container>
172 <div class=detail-table tabindex=0></div> 172 <div class=detail-table tabindex=0></div>
173 <grid class=thumbnail-grid tabindex=0></grid> 173 <grid class=thumbnail-grid tabindex=0></grid>
174 <div class=spinner></div>
174 </div> 175 </div>
175 <div class=downloads-warning hidden> 176 <div class=downloads-warning hidden>
176 <img src=images/warning_icon_square_26x26.png> 177 <img src=images/warning_icon_square_26x26.png>
177 <div></div> 178 <div></div>
178 </div> 179 </div>
179 </div> 180 </div>
180 <div class=preview-panel visibility=hidden> 181 <div class=preview-panel visibility=hidden>
181 <div><div class=preview-thumbnails></div></div> 182 <div><div class=preview-thumbnails></div></div>
182 <div><div class=preview-summary></div></div> 183 <div><div class=preview-summary></div></div>
183 <div class=spacer></div> 184 <div class=spacer></div>
(...skipping 18 matching lines...) Expand all
202 visibleif='this.dialogType_ == "saveas-file"'> 203 visibleif='this.dialogType_ == "saveas-file"'>
203 <div class=horizontal-spacer></div> 204 <div class=horizontal-spacer></div>
204 <button class=ok disabled tabindex=2>[OK]</button> 205 <button class=ok disabled tabindex=2>[OK]</button>
205 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL 206 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL
206 >[CANCEL]</button> 207 >[CANCEL]</button>
207 </div> 208 </div>
208 209
209 <script>init();</script> 210 <script>init();</script>
210 </body> 211 </body>
211 </html> 212 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_manager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698