1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

Job detail page refactor

Moved drawing frequency to 2 seconds.
This commit is contained in:
Chris Houseknecht 2014-06-30 08:51:37 -04:00
parent 0622dd101c
commit 878471bb76

View File

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