1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

remove unused service and fix lint issue

This commit is contained in:
John Mitchell 2019-03-05 12:00:12 -05:00
parent 8c5bcffd42
commit 9f5f86c6a7
No known key found for this signature in database
GPG Key ID: FE6A9B5BD4EB5C94

View File

@ -7,11 +7,11 @@
export default ['$scope', 'TemplatesService',
'ProcessErrors', '$q',
'PromptService', 'TemplatesStrings', 'WorkflowChartService',
'Wait', '$state', '$transitions',
'Wait', '$state',
function ($scope, TemplatesService,
ProcessErrors, $q,
PromptService, TemplatesStrings, WorkflowChartService,
Wait, $state, $transitions
Wait, $state
) {
let deletedNodeIds = [];
@ -37,7 +37,7 @@ export default ['$scope', 'TemplatesService',
$scope.cancelUnsavedChanges = () => {
$scope.unsavedChangesVisible = false;
}
};
let getNodes = () => {
Wait('start');