This commit is contained in:
Anis Kadri
2014-01-27 17:33:40 -08:00
2 changed files with 29 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
( function() {
win = null;
module.exports = {
show: function() {
if ( win === null ) {
win = window.open('splashscreen.html');
}
},
hide: function() {
if ( win !== null ) {
win.close();
win = null;
}
}
};
require("cordova/tizen/commandProxy").add("SplashScreen", module.exports);
})();