Job detail page refactor

Push DOM update interval out to 12 sec.
This commit is contained in:
Chris Houseknecht 2014-06-20 02:16:37 -04:00
parent a024de5702
commit 5cdba539c6

View File

@ -123,7 +123,7 @@ function JobDetailController ($rootScope, $scope, $compile, $routeParams, $log,
$rootScope.jobDetailInterval = setInterval(function() {
$log.debug('Updating the DOM...');
UpdateDOM({ scope: scope });
}, 3000);
}, 12000);
}
});