summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/controller/NavigationController.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/js/controller/NavigationController.js b/js/controller/NavigationController.js
index 7467acffa..1b183cbdf 100644
--- a/js/controller/NavigationController.js
+++ b/js/controller/NavigationController.js
@@ -406,4 +406,11 @@ app.controller('NavigationController', function ($route, FEED_TYPE, FeedResource
setSelectedFolderForRoute();
});
+ $rootScope.localeComparator = function(v1, v2) {
+ if (v1.type === 'string' && v2.type === 'string') {
+ return v1.value.localeCompare(v2.value);
+ }
+
+ return (v1.value === v2.value) ? 0 : ((v1.value < v2.value) ? -1 : 1);
+ };
});