Files
cordova-plugin-splashscreen/src/tizen/SplashScreenProxy.js
T

23 lines
375 B
JavaScript
Raw Normal View History

( function() {
2013-11-19 12:43:12 +02:00
win = null;
module.exports = {
show: function() {
if ( win === null ) {
win = window.open('splashscreen.html');
}
},
hide: function() {
if ( win !== null ) {
win.close();
win = null;
2013-11-19 12:43:12 +02:00
}
}
};
require("cordova/tizen/commandProxy").add("SplashScreen", module.exports);
})();