forked from public/cordova-plugin-splashscreen
Revert "Merge branch 'tizen' of http://github.com/siovene/cordova-plugin-splashscreen"
This reverts commit4da6ca883c, reversing changes made to3c2813f505.
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
( 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);
|
||||
|
||||
})();
|
||||
Reference in New Issue
Block a user