From 89f65d8ba0373e3bb04954ce78c41e132b3d2e05 Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Fri, 25 Jul 2014 10:45:12 -0400 Subject: [PATCH] local_config Fixed javascript error. --- awx/ui/static/js/helpers/LoadConfig.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/static/js/helpers/LoadConfig.js b/awx/ui/static/js/helpers/LoadConfig.js index e40d0f6f5b..11471c6b4b 100644 --- a/awx/ui/static/js/helpers/LoadConfig.js +++ b/awx/ui/static/js/helpers/LoadConfig.js @@ -44,5 +44,5 @@ angular.module('LoadConfigHelper', ['Utilities']) //local_config.js not found $rootScope.$emit('LoadConfig'); }); - } -}]); \ No newline at end of file + }; +}]);