You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/06/28 18:00:26 UTC

[06/50] [abbrv] android commit: removed splashscreen code from cordova.js

removed splashscreen code from cordova.js


Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/f7c97cb1
Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/f7c97cb1
Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/f7c97cb1

Branch: refs/heads/master
Commit: f7c97cb1d0a153d27c85ae9f79eb8fd2785bebe2
Parents: 7c22bc7
Author: Steven Gill <st...@gmail.com>
Authored: Tue May 21 13:04:40 2013 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Tue May 21 13:04:40 2013 -0700

----------------------------------------------------------------------
 framework/assets/www/cordova.js | 32 ++------------------------------
 1 file changed, 2 insertions(+), 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/f7c97cb1/framework/assets/www/cordova.js
----------------------------------------------------------------------
diff --git a/framework/assets/www/cordova.js b/framework/assets/www/cordova.js
index 8202173..53fa353 100644
--- a/framework/assets/www/cordova.js
+++ b/framework/assets/www/cordova.js
@@ -1,5 +1,5 @@
 // Platform: android
-// 2.7.0rc1-81-gc09114e
+// 2.7.0rc1-82-g32587e6
 /*
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
@@ -19,7 +19,7 @@
  under the License.
 */
 ;(function() {
-var CORDOVA_JS_BUILD_LABEL = '2.7.0rc1-81-gc09114e';
+var CORDOVA_JS_BUILD_LABEL = '2.7.0rc1-82-g32587e6';
 // file: lib/scripts/require.js
 
 var require,
@@ -5546,34 +5546,6 @@ module.exports = function(uri, successCallback, errorCallback) {
 
 });
 
-// file: lib/common/plugin/splashscreen.js
-define("cordova/plugin/splashscreen", function(require, exports, module) {
-
-var exec = require('cordova/exec');
-
-var splashscreen = {
-    show:function() {
-        exec(null, null, "SplashScreen", "show", []);
-    },
-    hide:function() {
-        exec(null, null, "SplashScreen", "hide", []);
-    }
-};
-
-module.exports = splashscreen;
-
-});
-
-// file: lib/common/plugin/splashscreen/symbols.js
-define("cordova/plugin/splashscreen/symbols", function(require, exports, module) {
-
-
-var modulemapper = require('cordova/modulemapper');
-
-modulemapper.clobbers('cordova/plugin/splashscreen', 'navigator.splashscreen');
-
-});
-
 // file: lib/common/symbols.js
 define("cordova/symbols", function(require, exports, module) {