mirror of
https://github.com/apache/cordova-plugin-splashscreen.git
synced 2026-06-28 00:00:02 +08:00
23 lines
375 B
JavaScript
23 lines
375 B
JavaScript
( 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);
|
|
|
|
})();
|