From 237d9cc752e115907128fbf0acdaea441497987a Mon Sep 17 00:00:00 2001 From: Athou Date: Sun, 26 May 2013 15:38:16 +0200 Subject: [PATCH] missing semicolons --- src/main/webapp/js/services.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/js/services.js b/src/main/webapp/js/services.js index b8acbda7..1f42b6fa 100644 --- a/src/main/webapp/js/services.js +++ b/src/main/webapp/js/services.js @@ -15,10 +15,10 @@ module.service('AnalyticsService', [ '$state', function($state) { module.service('MobileService', [ '$state', function($state) { this.toggleLeftMenu = function() { $('body').toggleClass('left-menu-active'); - } + }; this.toggleRightMenu = function() { $('body').toggleClass('right-menu-active'); - } + }; var width = (window.innerWidth > 0) ? window.innerWidth : screen.width; this.mobile = width < 979; }]);