From f36afc34dffc6ac0e239a9ce9548ce8112c8f5cf Mon Sep 17 00:00:00 2001 From: Bertrand Presles <bpresles@gmail.com> Date: Sat, 7 Sep 2019 15:30:11 +0200 Subject: [PATCH] Dynamically bootstrap the angular js app (fix potential display issue on iOS 11) --- www/index.html | 2 +- www/js/app.js | 5 ++++- www/js/config.js | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/www/index.html b/www/index.html index 40016956..ab6fecd6 100644 --- a/www/index.html +++ b/www/index.html @@ -51,7 +51,7 @@ <!--endRemoveIf(device)--> </head> - <body ng-app="cesium" id="cesium" ng-strict-di="true" window-exit-unauth="true" + <body id="cesium" ng-strict-di="true" window-exit-unauth="true" ng-class="{'nobackdrop': $root.tour, 'expert-mode': $root.settings.expertMode}"> diff --git a/www/js/app.js b/www/js/app.js index adbf45ea..187b7de1 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -148,6 +148,9 @@ angular.module('cesium', ['ionic', 'ionic-material', 'ngMessages', 'pascalprecht } } }); - }) ; + +window.ionic.Platform.ready(function() { + angular.bootstrap(document, ['cesium']); +}); diff --git a/www/js/config.js b/www/js/config.js index b645eb73..1d0b9e82 100644 --- a/www/js/config.js +++ b/www/js/config.js @@ -94,7 +94,7 @@ angular.module("cesium.config", []) } }, "version": "1.4.6", - "build": "2019-09-07T12:44:11.195Z", + "build": "2019-09-07T13:19:34.949Z", "newIssueUrl": "https://git.duniter.org/clients/cesium-grp/cesium/issues/new" }) -- GitLab