Skip to content

Commit

Permalink
Update taboosorter.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Cray committed Nov 6, 2012
1 parent 8307de2 commit 25dde71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taboosorter.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
return a - b; return a - b;
}, },
date: function (a, b) { date: function (a, b) {
var da = (new Date(a)).getTime(), var da = +(new Date(a)),
db = (new Date(b)).getTime(); db = +(new Date(b));


da = da != da ? inf : da; da = da != da ? inf : da;
db = db != db ? inf : db; db = db != db ? inf : db;
Expand Down

0 comments on commit 25dde71

Please sign in to comment.