missing semicolons

This commit is contained in:
Athou
2013-05-26 15:38:16 +02:00
parent 5124a092d3
commit 237d9cc752

View File

@@ -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;
}]);