(js) Remove calls to deprecated methods

pull/186/head
Francis Lachapelle 2015-12-14 12:20:39 -05:00
parent 558795327e
commit bb102e07e1
1 changed files with 1 additions and 1 deletions

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