Fix item sorting issue #37.

This commit is contained in:
kiswa 2014-10-25 15:32:58 -04:00
parent 4653075722
commit 919ee0db67

View File

@ -155,6 +155,8 @@ function ($scope, $routeParams, $location, $interval, $window,
} else if (diff < (1000 * 60 * 60 * 24 * 3)) { // Three days } else if (diff < (1000 * 60 * 60 * 24 * 3)) { // Three days
item.dateNear = true; item.dateNear = true;
} }
item.position = parseInt(item.position);
}); });
} }
}); });