You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by an...@apache.org on 2014/01/28 02:32:58 UTC

git commit: Revert "Merge branch 'tizen' of http://github.com/siovene/cordova-plugin-splashscreen"

Updated Branches:
  refs/heads/master 4da6ca883 -> 6cb0a8cf0


Revert "Merge branch 'tizen' of http://github.com/siovene/cordova-plugin-splashscreen"

This reverts commit 4da6ca883cd06e8528513dbda5820ef3311818b1, reversing
changes made to 3c2813f505284eb3943cdded83bc0d4e2d4b7076.


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/commit/6cb0a8cf
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/tree/6cb0a8cf
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/diff/6cb0a8cf

Branch: refs/heads/master
Commit: 6cb0a8cf0c20f842dc7ebc28d2f69ed29fedd11d
Parents: 4da6ca8
Author: Anis Kadri <an...@apache.org>
Authored: Mon Jan 27 17:32:09 2014 -0800
Committer: Anis Kadri <an...@apache.org>
Committed: Mon Jan 27 17:32:09 2014 -0800

----------------------------------------------------------------------
 plugin.xml                     |  8 +-------
 src/tizen/SplashScreenProxy.js | 22 ----------------------
 2 files changed, 1 insertion(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/blob/6cb0a8cf/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index dec427f..dd2636a 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -54,7 +54,7 @@
 
 	    <header-file src="src/ios/CDVSplashScreen.h" />
 	    <source-file src="src/ios/CDVSplashScreen.m" />
-
+	    
 	    <framework src="CoreGraphics.framework" />
     </platform>
 
@@ -97,10 +97,4 @@
         </js-module>
     </platform>
 
-    <!-- tizen -->
-    <platform name="tizen">
-        <js-module src="src/tizen/SplashScreenProxy.js" name="SplashScreenProxy">
-            <runs />
-        </js-module>
-    </platform>
 </plugin>

http://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen/blob/6cb0a8cf/src/tizen/SplashScreenProxy.js
----------------------------------------------------------------------
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);
-
-})();