This reverts commit 4da6ca883c, reversing
changes made to 3c2813f505.
This commit is contained in:
Anis Kadri
2014-01-27 17:32:09 -08:00
parent 4da6ca883c
commit 6cb0a8cf0c
2 changed files with 1 additions and 29 deletions
-22
View File
@@ -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);
})();