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

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

Issue 7038024: Move sorting logic from table to list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes Created 9 years, 7 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
OLDNEW
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 12 matching lines...) Expand all
23 'cr/event_target.js', 23 'cr/event_target.js',
24 'cr/ui/array_data_model.js', 24 'cr/ui/array_data_model.js',
25 'cr/ui/list_item.js', 25 'cr/ui/list_item.js',
26 'cr/ui/list_selection_model.js', 26 'cr/ui/list_selection_model.js',
27 'cr/ui/list_single_selection_model.js', 27 'cr/ui/list_single_selection_model.js',
28 'cr/ui/list_selection_controller.js', 28 'cr/ui/list_selection_controller.js',
29 'cr/ui/list.js', 29 'cr/ui/list.js',
30 30
31 'cr/ui/splitter.js', 31 'cr/ui/splitter.js',
32 'cr/ui/table/table_splitter.js', 32 'cr/ui/table/table_splitter.js',
33 'cr/ui/table/table_selection_model.js',
34 'cr/ui/table/table_single_selection_model.js',
35 'cr/ui/table/table_data_model.js',
36 33
37 'cr/ui/table/table_column.js', 34 'cr/ui/table/table_column.js',
38 'cr/ui/table/table_column_model.js', 35 'cr/ui/table/table_column_model.js',
39 'cr/ui/table/table_header.js', 36 'cr/ui/table/table_header.js',
40 'cr/ui/table/table_list.js', 37 'cr/ui/table/table_list.js',
41 'cr/ui/table.js', 38 'cr/ui/table.js',
42 39
43 'cr/ui/grid.js', 40 'cr/ui/grid.js',
44 41
45 'cr/ui/command.js', 42 'cr/ui/command.js',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 <input type=text class=filename-input spellcheck=false 134 <input type=text class=filename-input spellcheck=false
138 visibleif='this.dialogType_ == "saveas-file"'> 135 visibleif='this.dialogType_ == "saveas-file"'>
139 <div class=horizontal-spacer></div> 136 <div class=horizontal-spacer></div>
140 <button class=ok disabled>[OK]</button> 137 <button class=ok disabled>[OK]</button>
141 <button class=cancel i18n-content=CANCEL_LABEL>[CANCEL]</button> 138 <button class=cancel i18n-content=CANCEL_LABEL>[CANCEL]</button>
142 </div> 139 </div>
143 140
144 <script>init();</script> 141 <script>init();</script>
145 </body> 142 </body>
146 </html> 143 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698