You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2013/05/21 23:56:15 UTC

js commit: removed splashscreen code

Updated Branches:
  refs/heads/3.0.0 32587e63f -> 658fd3272


removed splashscreen code


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

Branch: refs/heads/3.0.0
Commit: 658fd32721b06306578606814f18bea2b502c6b5
Parents: 32587e6
Author: Steven Gill <st...@gmail.com>
Authored: Tue May 21 14:56:08 2013 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Tue May 21 14:56:08 2013 -0700

----------------------------------------------------------------------
 lib/common/plugin/splashscreen.js         |   33 ------------------------
 lib/common/plugin/splashscreen/symbols.js |   24 -----------------
 2 files changed, 0 insertions(+), 57 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/658fd327/lib/common/plugin/splashscreen.js
----------------------------------------------------------------------
diff --git a/lib/common/plugin/splashscreen.js b/lib/common/plugin/splashscreen.js
deleted file mode 100644
index 7cb48bd..0000000
--- a/lib/common/plugin/splashscreen.js
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
-*/
-
-var exec = require('cordova/exec');
-
-var splashscreen = {
-    show:function() {
-        exec(null, null, "SplashScreen", "show", []);
-    },
-    hide:function() {
-        exec(null, null, "SplashScreen", "hide", []);
-    }
-};
-
-module.exports = splashscreen;

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/658fd327/lib/common/plugin/splashscreen/symbols.js
----------------------------------------------------------------------
diff --git a/lib/common/plugin/splashscreen/symbols.js b/lib/common/plugin/splashscreen/symbols.js
deleted file mode 100644
index bcca25e..0000000
--- a/lib/common/plugin/splashscreen/symbols.js
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
-*/
-
-
-var modulemapper = require('cordova/modulemapper');
-
-modulemapper.clobbers('cordova/plugin/splashscreen', 'navigator.splashscreen');