Index: chrome/browser/resources/ntp4/page_list_view.js |
diff --git a/chrome/browser/resources/ntp4/page_list_view.js b/chrome/browser/resources/ntp4/page_list_view.js |
index a5065b12ff35217dad3cde04fba1ee714c689a1f..682e8fad081bd119ae2cc33ef3e42bb73cf59921 100644 |
--- a/chrome/browser/resources/ntp4/page_list_view.js |
+++ b/chrome/browser/resources/ntp4/page_list_view.js |
@@ -279,9 +279,9 @@ cr.define('ntp4', function() { |
return true; |
} |
- // Sort by launch index |
+ // Sort by launch ordinal |
apps.sort(function(a, b) { |
- return a.app_launch_index - b.app_launch_index; |
+ return a.app_launch_ordinal > b.app_launch_ordinal; |
}); |
// An app to animate (in case it was just installed). |