From ae8092ddc016329a13ab7c6a72f6f737843dce53 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Wed, 16 Mar 2016 13:39:38 +0100 Subject: [PATCH] Make JSHint happy --- config/environment.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/environment.js b/config/environment.js index 41276ea9..62a462c8 100644 --- a/config/environment.js +++ b/config/environment.js @@ -79,7 +79,7 @@ module.exports = function(environment) { // ENV.APP.LOG_VIEW_LOOKUPS = true; ENV['ember-cli-mirage'] = { enabled: false - } + }; } if (environment === 'test') { @@ -100,7 +100,7 @@ module.exports = function(environment) { if (environment === 'production') { ENV['ember-cli-mirage'] = { enabled: false - } + }; } // TODO: I insert values from ENV here, but in production @@ -117,7 +117,7 @@ module.exports = function(environment) { 'style-src': "'self' https://fonts.googleapis.com", 'media-src': "'self'", 'frame-src': "'self' " + ENV.apiEndpoint - } + }; return ENV; };