Job detail page refactor

Things being added to the DOM were passed by reference and not value. Fixed that using json stringify/parse. Now the DOM does not update in real time. Added in updated of summary list and graph. Performing updates every 5 sec.
This commit is contained in:
Chris Houseknecht
2014-06-20 03:07:47 -04:00
parent 5cdba539c6
commit 22a51a18f1
2 changed files with 48 additions and 36 deletions

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 });
}, 12000);
}, 5000);
}
});