Fix problem with sorting date fields

Introduced a couple of commits ago when the localeCompare() stuff was
added.
print-window-tiddler
Jermolene 2014-04-17 22:52:57 +01:00
rodzic 4758874d13
commit 89165fc51d
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -309,6 +309,8 @@ exports.sortTiddlers = function(titles,sortField,isDescending,isCaseSensitive,is
a = Number(a);
b = Number(b);
return isDescending ? b - a : a - b;
} else if($tw.utils.isDate(a) && $tw.utils.isDate(b)) {
return isDescending ? b - a : a - b;
} else {
a = String(a);
b = String(b);