From 52459d16b9038c424180fa26ec49a55d0f00a333 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Fri, 15 May 2015 14:14:22 -0400 Subject: [PATCH] Revert "jshint fixes" This reverts commit b2d51abb4048b2e456c04c8ffc35cb7ebf7dfea6. --- awx/ui/static/js/system-tracking/main.js | 2 +- .../js/system-tracking/system-tracking.controller.js | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/awx/ui/static/js/system-tracking/main.js b/awx/ui/static/js/system-tracking/main.js index ddf62cd754..2c92bd2e0f 100644 --- a/awx/ui/static/js/system-tracking/main.js +++ b/awx/ui/static/js/system-tracking/main.js @@ -5,5 +5,5 @@ export default .config(['$routeProvider', function($routeProvider) { var url = route.route; delete route.route; - $routeProvider.when(url, route); + $routeProvider.when(url, route) }]); diff --git a/awx/ui/static/js/system-tracking/system-tracking.controller.js b/awx/ui/static/js/system-tracking/system-tracking.controller.js index 23a6aed5eb..9a1c1de4c6 100644 --- a/awx/ui/static/js/system-tracking/system-tracking.controller.js +++ b/awx/ui/static/js/system-tracking/system-tracking.controller.js @@ -1,5 +1,3 @@ -export default - [ '$scope', - function($scope) { - $scope.viewType = 'host2host'; - }]; +export default ['$scope', function($scope) { + $scope.viewType = 'host2host'; +}]