| Index: chrome/browser/resources/ntp_search/new_tab.js
|
| diff --git a/chrome/browser/resources/ntp_search/new_tab.js b/chrome/browser/resources/ntp_search/new_tab.js
|
| index d4dc34f2fe381902eedefedd99c037ead8a2c259..1d8efa16a872c4b9b9650e3ad03437b2136a736f 100644
|
| --- a/chrome/browser/resources/ntp_search/new_tab.js
|
| +++ b/chrome/browser/resources/ntp_search/new_tab.js
|
| @@ -414,8 +414,8 @@ cr.define('ntp', function() {
|
|
|
| // Sort by launch ordinal
|
| apps.sort(function(a, b) {
|
| - return a.app_launch_ordinal > b.app_launch_ordinal ? 1 :
|
| - a.app_launch_ordinal < b.app_launch_ordinal ? -1 : 0;
|
| + return a.title.toLocaleLowerCase() > b.title.toLocaleLowerCase() ? 1 :
|
| + a.title.toLocaleLowerCase() < b.title.toLocaleLowerCase() ? -1 : 0;
|
| });
|
|
|
| // An app to animate (in case it was just installed).
|
|
|