mirror of
https://github.com/ansible/awx.git
synced 2026-05-15 05:17:36 -02:30
Job detail page
Disabled clicking on play or task while live events are happening.
This commit is contained in:
@@ -968,7 +968,7 @@ function($rootScope, $log, UpdatePlayStatus, UpdateHostStatus, AddHostResult, Ge
|
||||
}
|
||||
scope.plays = result;
|
||||
if (scope.liveEventProcessing) {
|
||||
scope.$emit('FixPlaysScroll');
|
||||
$('#plays-table-detail').scrollTop($('#plays-table-detail').prop("scrollHeight"));
|
||||
}
|
||||
};
|
||||
}])
|
||||
@@ -1005,7 +1005,7 @@ function($rootScope, $log, UpdatePlayStatus, UpdateHostStatus, AddHostResult, Ge
|
||||
|
||||
scope.tasks = result;
|
||||
if (scope.liveEventProcessing) {
|
||||
scope.$emit('FixTasksScroll');
|
||||
$('#tasks-table-detail').scrollTop($('#tasks-table-detail').prop("scrollHeight"));
|
||||
}
|
||||
};
|
||||
}])
|
||||
@@ -1043,7 +1043,7 @@ function($rootScope, $log, UpdatePlayStatus, UpdateHostStatus, AddHostResult, Ge
|
||||
}
|
||||
scope.hostResults = result;
|
||||
if (scope.liveEventProcessing) {
|
||||
scope.$emit('FixHostResultsScroll');
|
||||
$('#hosts-table-detail').scrollTop($('#hosts-table-detail').prop("scrollHeight"));
|
||||
}
|
||||
};
|
||||
}])
|
||||
|
||||
Reference in New Issue
Block a user