From 44f1ce621de84100f49e84ef3bb51596249b8555 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 31 Aug 2017 14:25:26 -0400 Subject: [PATCH] short body is 800 or less height --- src/popup/app/global/mainController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/app/global/mainController.js b/src/popup/app/global/mainController.js index 6e56fcc716..1f85b7b623 100644 --- a/src/popup/app/global/mainController.js +++ b/src/popup/app/global/mainController.js @@ -6,7 +6,7 @@ angular var self = this; self.currentYear = new Date().getFullYear(); self.animation = ''; - self.shBody = $window.screen.availHeight <= 750; + self.shBody = $window.screen.availHeight <= 800; self.lgBody = !utilsService.isFirefox() && !utilsService.isEdge() && !self.shBody; $scope.$on('$stateChangeSuccess', function (event, toState, toParams, fromState, fromParams) {