From 46b7f5e4ff0c1f8229ff13cd901379d37307f99d 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 afba600..4a268c4 100644 --- a/index.html +++ b/index.html @@ -45,6 +45,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);