From e7f589516ebdca245bf01c253b44ff708f723b07 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 10 Aug 2015 23:15:27 +1200 Subject: Check full device screen size --- web/app/controller/Root.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web/app/controller') diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index 7ad8dacc2..9eef35dc0 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -28,7 +28,7 @@ Ext.define('Traccar.controller.Root', { var indicator = document.createElement('div'); indicator.className = 'state-indicator'; document.body.appendChild(indicator); - isPhone = parseInt(window.getComputedStyle(indicator).getPropertyValue('z-index'), 10); + this.isPhone = parseInt(window.getComputedStyle(indicator).getPropertyValue('z-index'), 10) !== 0; }, onLaunch: function () { @@ -67,7 +67,7 @@ Ext.define('Traccar.controller.Root', { loadApp: function() { Ext.getStore('Devices').load(); Ext.getBody().empty(); - if (isPhone) { + if (this.isPhone) { Ext.create('Traccar.view.main.MainMobile'); } else { Ext.create('Traccar.view.main.Main'); -- cgit v1.2.3