mirror of
https://github.com/ansible/awx.git
synced 2026-02-26 07:26:03 -03:30
Job detail page
Disabled clicking on play or task while live events are happening.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user