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 ++-- web/debug.html | 2 +- web/release.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'web') 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'); diff --git a/web/debug.html b/web/debug.html index 811451315..fa3836ce2 100644 --- a/web/debug.html +++ b/web/debug.html @@ -6,7 +6,7 @@ Traccar diff --git a/web/release.html b/web/release.html index 9b10b9d7f..bc4d902c0 100644 --- a/web/release.html +++ b/web/release.html @@ -6,7 +6,7 @@ Traccar -- cgit v1.2.3