From ef7709d30ac5eb41dec7209c34c41d9b496003eb Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Wed, 28 Sep 2016 08:42:09 -0400 Subject: dont call mobile accessory if on desktop Former-commit-id: 331a307d23a208b5fadb1b29c296c35802e6aab5 --- www/js/EventCtrl.js | 4 +++- www/js/app.js | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'www/js') diff --git a/www/js/EventCtrl.js b/www/js/EventCtrl.js index 53511651..cbfc172e 100644 --- a/www/js/EventCtrl.js +++ b/www/js/EventCtrl.js @@ -88,7 +88,9 @@ angular.module('zmApp.controllers') // collection repeat, so lets re-get the text size if it has changed // note that there may be a delay as its a callback - so might involve // a UI jiggle - MobileAccessibility.getTextZoom(getTextZoomCallback); + + if ($rootScope.platformOS != "desktop") + MobileAccessibility.getTextZoom(getTextZoomCallback); eventsListDetailsHeight = parseInt(zm.eventsListDetailsHeight * $rootScope.textScaleFactor); eventsListScrubHeight = parseInt(zm.eventsListScrubHeight * $rootScope.textScaleFactor); diff --git a/www/js/app.js b/www/js/app.js index 1c366c41..034a89c6 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -29,6 +29,7 @@ angular.module('zmApp', [ 'ionic-native-transitions', 'mgo-angular-wizard', 'pascalprecht.translate' + @@ -1108,7 +1109,7 @@ angular.module('zmApp', [ $rootScope.textScaleFactor = 1.0; - MobileAccessibility.getTextZoom(getTextZoomCallback); + $rootScope.db = null; $rootScope.runMode = NVRDataModel.getBandwidth(); @@ -1123,6 +1124,8 @@ angular.module('zmApp', [ NVRDataModel.log("You are running on " + $rootScope.platformOS); + if ($rootScope.platformOS != "desktop") + MobileAccessibility.getTextZoom(getTextZoomCallback); localforage.config({ name: zm.dbName -- cgit v1.2.3