From 6cb0a8cf0c20f842dc7ebc28d2f69ed29fedd11d Mon Sep 17 00:00:00 2001 From: Anis Kadri Date: Mon, 27 Jan 2014 17:32:09 -0800 Subject: [PATCH] Revert "Merge branch 'tizen' of http://github.com/siovene/cordova-plugin-splashscreen" This reverts commit 4da6ca883cd06e8528513dbda5820ef3311818b1, reversing changes made to 3c2813f505284eb3943cdded83bc0d4e2d4b7076. --- plugin.xml | 8 +------- src/tizen/SplashScreenProxy.js | 22 ---------------------- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 src/tizen/SplashScreenProxy.js diff --git a/plugin.xml b/plugin.xml index dec427f..dd2636a 100644 --- a/plugin.xml +++ b/plugin.xml @@ -54,7 +54,7 @@ - + @@ -97,10 +97,4 @@ - - - - - - diff --git a/src/tizen/SplashScreenProxy.js b/src/tizen/SplashScreenProxy.js deleted file mode 100644 index 5222b6b..0000000 --- a/src/tizen/SplashScreenProxy.js +++ /dev/null @@ -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); - -})();