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', "default": '0',
addRequired: false, addRequired: false,
editRequired: false, editRequired: false,
class: "input-small", 'class': "input-small",
column: 1, column: 1,
awPopOver: "<p>The number of parallel or simultaneous processes to use while executing the playbook. Provide a value between 0 and 100. " + 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>", "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', label: 'Job Status',
type: 'custom', type: 'custom',
control: '<div class="job-detail-status job-\{\{ status \}\}"><i class="icon-circle"></i> \{\{ status \}\}</div>', control: '<div class="job-detail-status job-\{\{ status \}\}"><i class="icon-circle"></i> \{\{ status \}\}</div>',
readonly: true, readonly: true
}, },
created: { created: {
label: 'Date', label: 'Date',

View File

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

View File

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