(js) Remove calls to deprecated methods

This commit is contained in:
Francis Lachapelle 2015-12-14 12:20:39 -05:00
parent 558795327e
commit bb102e07e1

View file

@ -22,7 +22,7 @@
$timeout(function() {
// Update date when day ends
$interval(function() {
$http.get('../date').success(function(data) {
$http.get('../date').then(function(data) {
$scope.currentDay = data;
});
}, 24 * 3600 * 1000);