Job detail page

Disabled clicking on play or task while live events are happening.
This commit is contained in:
Chris Houseknecht
2014-07-02 18:47:08 -04:00
parent 1c57d49981
commit 803f0b6d12
3 changed files with 20 additions and 18 deletions

View File

@@ -593,19 +593,23 @@ function JobDetailController ($location, $rootScope, $scope, $compile, $routePar
}, 500));
scope.selectPlay = function(id) {
scope.auto_scroll_plays = false;
SelectPlay({
scope: scope,
id: id
});
if (!scope.liveEventProcessing) {
scope.auto_scroll_plays = false;
SelectPlay({
scope: scope,
id: id
});
}
};
scope.selectTask = function(id) {
scope.auto_scroll_tasks = false;
SelectTask({
scope: scope,
id: id
});
if (!scope.liveEventProcessing) {
scope.auto_scroll_tasks = false;
SelectTask({
scope: scope,
id: id
});
}
};
scope.toggleSummary = function(hide) {