Fixed javascript compilation errors

This commit is contained in:
chouseknecht 2013-07-23 11:47:15 -04:00
parent 8ffc6870c3
commit d0ca4264a4
4 changed files with 6 additions and 6 deletions

View File

@ -95,7 +95,7 @@ angular.module('JobTemplateFormDefinition', [])
"default": '0',
addRequired: false,
editRequired: false,
class: "input-small",
'class': "input-small",
column: 1,
awPopOver: "<p>The number of parallel or simultaneous processes to use while executing the playbook. Provide a value between 0 and 100. " +
"A value of zero will use the ansible default setting of 5 parallel processes.</p>",

View File

@ -242,7 +242,7 @@ angular.module('JobFormDefinition', [])
label: 'Job Status',
type: 'custom',
control: '<div class="job-detail-status job-\{\{ status \}\}"><i class="icon-circle"></i> \{\{ status \}\}</div>',
readonly: true,
readonly: true
},
created: {
label: 'Date',

View File

@ -113,7 +113,7 @@ angular.module('ProjectFormDefinition', [])
awToolTip: 'Delete the credential'
}
}
},
}
}
}); // Form

View File

@ -14,10 +14,10 @@ angular.module('HostsHelper', [ 'RestServices', 'Utilities', 'ListGenerator', 'H
])
.factory('HostsList', ['$rootScope', '$location', '$log', '$routeParams', 'Rest', 'Alert', 'HostList', 'GenerateList',
'Prompt', 'SearchInit', 'PaginateInit', 'ProcessErrors', 'GetBasePath', 'HostsAdd', 'HostsReload', 'SearchInit',
'Prompt', 'SearchInit', 'PaginateInit', 'ProcessErrors', 'GetBasePath', 'HostsAdd', 'HostsReload',
'SelectionInit',
function($rootScope, $location, $log, $routeParams, Rest, Alert, HostList, GenerateList, LoadBreadCrumbs, SearchInit,
PaginateInit, ProcessErrors, GetBasePath, HostsAdd, HostsReload, SearchInit, SelectionInit) {
function($rootScope, $location, $log, $routeParams, Rest, Alert, HostList, GenerateList, Prompt, SearchInit,
PaginateInit, ProcessErrors, GetBasePath, HostsAdd, HostsReload, SelectionInit) {
return function(params) {
var inventory_id = params.inventory_id;