Index: chrome/browser/resources/ntp4/page_list_view.js |
=================================================================== |
--- chrome/browser/resources/ntp4/page_list_view.js (revision 114254) |
+++ chrome/browser/resources/ntp4/page_list_view.js (working copy) |
@@ -279,9 +279,9 @@ |
return true; |
} |
- // Sort by launch ordinal |
+ // Sort by launch index |
apps.sort(function(a, b) { |
- return a.app_launch_ordinal > b.app_launch_ordinal; |
+ return a.app_launch_index - b.app_launch_index; |
}); |
// An app to animate (in case it was just installed). |