diff options
| -rw-r--r-- | config.xml | 5 | ||||
| -rw-r--r-- | www/js/app.js | 4 |
2 files changed, 5 insertions, 4 deletions
@@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<widget id="com.pliablepixels.zmninja" version="0.66" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> +<widget id="com.pliablepixels.zmninja" version="0.67" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>zmNinja</name> <description> High performance ZoneMinder client @@ -15,7 +15,8 @@ <preference name="UIWebViewBounce" value="false"/> <preference name="DisallowOverscroll" value="true"/> <preference name="BackupWebStorage" value="none"/> - <preference name="AutoHideSplashScreen" value="true"/> + <preference name="AutoHideSplashScreen" value="false"/> + <preference name="ShowSplashScreenSpinner" value="false"/> <preference name="SplashScreen" value="screen"/> <preference name="deployment-target" value="7.0"/> <preference name="SplashScreenDelay" value="3000"/> diff --git a/www/js/app.js b/www/js/app.js index d90a25c0..a9f0b571 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -402,12 +402,12 @@ angular.module('zmApp', [ } - /*setTimeout(function () { + setTimeout(function () { if (window.cordova) { $cordovaSplashscreen.hide(); } - }, 1500);*/ + }, 1500); if(window.navigator && window.navigator.splashscreen) { window.navigator.splashscreen.hide(); |
