Fix js compilation errors.

This commit is contained in:
Chris Houseknecht
2013-12-20 23:53:54 +00:00
parent 7ef25fec57
commit 0b7d3999d2
4 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ angular.module('InventoryGroupsDefinition', [])
index: false,
hover: true,
hasChildren: true,
class: 'table-condensed',
'class': 'table-condensed',
fields: {
name: {

View File

@@ -18,7 +18,7 @@ angular.module('InventoryHostsDefinition', [])
index: false,
hover: true,
hasChildren: true,
class: 'table-condensed',
'class': 'table-condensed',
fields: {
name: {

View File

@@ -88,7 +88,7 @@ angular.module('JobsListDefinition', [])
icon: 'icon-rocket',
mode: 'all',
ngClick: "submitJob(\{\{ job.id \}\}, '\{\{ job.summary_fields.job_template.name \}\}' )",
"class": 'btn-success btn-xs',
'class': 'btn-success btn-xs',
awToolTip: 'Relaunch the job template, running it again from scratch'
},
cancel: {
@@ -121,6 +121,6 @@ angular.module('JobsListDefinition', [])
{ ngClick: "viewSummary(\{{ job.id \}\}, '\{\{ job.summary_fields.job_template.name \}\}')", label: 'Host Summary',
ngHide: "job.status == 'new'" }
]
},
}
}
});