From 615f553fd266838e27d050efd0a687ec26f98c28 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Fri, 4 Dec 2015 21:47:30 -0600 Subject: [PATCH] fix editor height --- client/commonFramework/phone-scroll-lock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/commonFramework/phone-scroll-lock.js b/client/commonFramework/phone-scroll-lock.js index 32b40c8a1d..a9b58fb23c 100644 --- a/client/commonFramework/phone-scroll-lock.js +++ b/client/commonFramework/phone-scroll-lock.js @@ -11,7 +11,7 @@ window.common = (function({ common = { init: [] }}) { if (magiVal < 0) { magiVal = 0; } - $('.editorScrollDiv').css('height', magiVal - 85 + 'px'); + $('.editorScrollDiv').css('height', magiVal - 50 + 'px'); } magiVal = $(window).height() - $('.navbar').height();