1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-28 23:10:46 +00:00

Fix problem with sorting date fields

Introduced a couple of commits ago when the localeCompare() stuff was
added.
This commit is contained in:
Jermolene 2014-04-17 22:52:57 +01:00
parent 4758874d13
commit 89165fc51d

View File

@ -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);