| Index: ui/file_manager/file_manager/common/js/util.js
|
| diff --git a/ui/file_manager/file_manager/common/js/util.js b/ui/file_manager/file_manager/common/js/util.js
|
| index 6a5f8d7f18cd9dc0ff4d95f6c34e2642fd672329..acdbf159b7ad68129ff2dff5eb1d2b53607cafd7 100644
|
| --- a/ui/file_manager/file_manager/common/js/util.js
|
| +++ b/ui/file_manager/file_manager/common/js/util.js
|
| @@ -834,7 +834,7 @@ util.AppCache.cleanup_ = function(map) {
|
| if (map.hasOwnProperty(key))
|
| keys.push(key);
|
| }
|
| - keys.sort(function(a, b) { return map[a].expire > map[b].expire });
|
| + keys.sort(function(a, b) { return map[a].expire > map[b].expire; });
|
|
|
| var cutoff = Date.now();
|
|
|
|
|