From 6f4ea7fc18f0c9f2868226e28fb93e8bff3ba375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCbschle-Schneider?= Date: Tue, 11 Mar 2014 22:53:46 +0000 Subject: [PATCH] add cordova, hide splash screen when loaded --- index.html | 2 ++ js/app.js | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 js/app.js diff --git a/index.html b/index.html index febf330..630491c 100644 --- a/index.html +++ b/index.html @@ -46,6 +46,8 @@ + +
diff --git a/js/app.js b/js/app.js new file mode 100644 index 0000000..32e8cac --- /dev/null +++ b/js/app.js @@ -0,0 +1,3 @@ +document.addEventListener('deviceready', function() { + navigator.splashscreen.hide(); +}, false);