From 0b7d3999d2327ebf675e0cf5b2770d3f1e015a52 Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Fri, 20 Dec 2013 23:53:54 +0000 Subject: [PATCH] Fix js compilation errors. --- awx/ui/static/js/helpers/Hosts.js | 2 +- awx/ui/static/js/lists/InventoryGroups.js | 2 +- awx/ui/static/js/lists/InventoryHosts.js | 2 +- awx/ui/static/js/lists/Jobs.js | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/awx/ui/static/js/helpers/Hosts.js b/awx/ui/static/js/helpers/Hosts.js index a666e71758..3047bffd57 100644 --- a/awx/ui/static/js/helpers/Hosts.js +++ b/awx/ui/static/js/helpers/Hosts.js @@ -10,7 +10,7 @@ angular.module('HostsHelper', [ 'RestServices', 'Utilities', 'ListGenerator', 'HostListDefinition', 'SearchHelper', 'PaginateHelper', 'ListGenerator', 'AuthService', 'HostsHelper', 'InventoryHelper', 'RelatedSearchHelper','RelatedPaginateHelper', - 'InventoryFormDefinition', 'SelectionHelper', 'HostGroupsFormDefinition', + 'InventoryFormDefinition', 'SelectionHelper', 'HostGroupsFormDefinition' ]) diff --git a/awx/ui/static/js/lists/InventoryGroups.js b/awx/ui/static/js/lists/InventoryGroups.js index 3b185044d1..39622af9c1 100644 --- a/awx/ui/static/js/lists/InventoryGroups.js +++ b/awx/ui/static/js/lists/InventoryGroups.js @@ -18,7 +18,7 @@ angular.module('InventoryGroupsDefinition', []) index: false, hover: true, hasChildren: true, - class: 'table-condensed', + 'class': 'table-condensed', fields: { name: { diff --git a/awx/ui/static/js/lists/InventoryHosts.js b/awx/ui/static/js/lists/InventoryHosts.js index fe5fe6114c..9517dab8eb 100644 --- a/awx/ui/static/js/lists/InventoryHosts.js +++ b/awx/ui/static/js/lists/InventoryHosts.js @@ -18,7 +18,7 @@ angular.module('InventoryHostsDefinition', []) index: false, hover: true, hasChildren: true, - class: 'table-condensed', + 'class': 'table-condensed', fields: { name: { diff --git a/awx/ui/static/js/lists/Jobs.js b/awx/ui/static/js/lists/Jobs.js index e1f5329b40..aba8dde7c9 100644 --- a/awx/ui/static/js/lists/Jobs.js +++ b/awx/ui/static/js/lists/Jobs.js @@ -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'" } ] - }, + } } });