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

Unified Diff: chrome/browser/resources/file_manager/js/file_manager.js

Issue 10205011: [filemanager] Set default sort to Date. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/js/file_manager.js
===================================================================
--- chrome/browser/resources/file_manager/js/file_manager.js (revision 133656)
+++ chrome/browser/resources/file_manager/js/file_manager.js (working copy)
@@ -503,7 +503,8 @@
this.summarizeSelection_();
var sortField =
- window.localStorage['sort-field-' + this.dialogType_] || 'cachedMtime_';
+ window.localStorage['sort-field-' + this.dialogType_] ||
+ 'modificationTime';
var sortDirection =
window.localStorage['sort-direction-' + this.dialogType_] || 'desc';
this.directoryModel_.fileList.sort(sortField, sortDirection);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698