Updates jshint settings

This commit is contained in:
Joe Fiorini
2015-01-30 15:08:28 -05:00
parent 2464d68b38
commit 4775523764
12 changed files with 81 additions and 34 deletions

View File

@@ -111,7 +111,9 @@ angular.module('JobSubmissionHelper', [ 'RestServices', 'Utilities', 'Credential
if(scope.prompt_for_vars===false && scope.survey_enabled===true){
scope.$emit('GetExtraVars');
}
else scope.$emit('BuildData');
else {
scope.$emit('BuildData');
}
};
@@ -831,7 +833,9 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi
else if (!Empty(scope.survey_enabled) && scope.survey_enabled===true) {
scope.$emit('PromptForSurvey', html, url);
}
else scope.$emit('StartPlaybookRun', url);
else {
scope.$emit('StartPlaybookRun', url);
}
}
})
@@ -1021,4 +1025,4 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi
});
};
}
]);
]);