From 8a7c18a3fa805ef2f5c0326f63a62daa4531d9e9 Mon Sep 17 00:00:00 2001 From: Gunther Brunner Date: Thu, 29 May 2014 18:58:09 +0900 Subject: [PATCH] Forcing retina ratio to 1.2 --- res/app/components/stf/screen/screen-directive.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/res/app/components/stf/screen/screen-directive.js b/res/app/components/stf/screen/screen-directive.js index 604e9cd9..116ee3db 100644 --- a/res/app/components/stf/screen/screen-directive.js +++ b/res/app/components/stf/screen/screen-directive.js @@ -27,6 +27,8 @@ module.exports = function DeviceScreenDirective($document, ScalingService, Vendo scope.$on('panelsResized', updateBounds) function setDisplayDensity(forRetina) { + // FORCE + forRetina = 1.2 return guestDisplayDensity = BrowserInfo.mobile && BrowserInfo.retina ? forRetina : 1 }