You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pp...@apache.org on 2013/06/27 15:40:24 UTC

[1/2] js commit: [CB-3739][Tizen][Tizen SDK 2.1 Nectarine] - splashscreen

Updated Branches:
  refs/heads/master d81abfc97 -> d422f84c5


[CB-3739][Tizen][Tizen SDK 2.1 Nectarine] - splashscreen

actually add splashscreen.js in tizen
(just forgot to "add" the file .... :-( )


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

Branch: refs/heads/master
Commit: 718d0111541422d88a36a9cd8c24b86e9e74d7db
Parents: 3a9b99a
Author: pplaquette <pp...@apache.org>
Authored: Thu Jun 27 11:02:18 2013 +0200
Committer: pplaquette <pp...@apache.org>
Committed: Thu Jun 27 11:02:18 2013 +0200

----------------------------------------------------------------------
 lib/tizen/plugin/tizen/SplashScreen.js | 43 +++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/718d0111/lib/tizen/plugin/tizen/SplashScreen.js
----------------------------------------------------------------------
diff --git a/lib/tizen/plugin/tizen/SplashScreen.js b/lib/tizen/plugin/tizen/SplashScreen.js
new file mode 100644
index 0000000..1187c45
--- /dev/null
+++ b/lib/tizen/plugin/tizen/SplashScreen.js
@@ -0,0 +1,43 @@
+/*
+ *
+ * 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 = {
+
+    window: null,
+
+
+    show:function() {
+        console.log ("tizen splashscreen show()");
+
+        // open a windows in splashscreen.window
+        // add DOM with an Image
+
+    },
+    hide:function() {
+        console.log ("tizen splashscreen hide()");
+        //delete the window splashscreen.window
+        //set to null
+    }
+};
+
+module.exports = splashscreen;


[2/2] js commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/cordova-js

Posted by pp...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/cordova-js


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

Branch: refs/heads/master
Commit: d422f84c59e4b2fb0e1b4c272635579a623ae674
Parents: 718d011 d81abfc
Author: pplaquette <pp...@apache.org>
Authored: Thu Jun 27 11:26:53 2013 +0200
Committer: pplaquette <pp...@apache.org>
Committed: Thu Jun 27 11:26:53 2013 +0200

----------------------------------------------------------------------
 Gruntfile.js                                    |   2 +-
 lib/common/plugin/FileWriter.js                 |  35 +--
 lib/ios/exec.js                                 |   2 +-
 lib/scripts/bootstrap-android.js                |   2 +
 .../plugin/windowsphone/XHRPatch/plugininit.js  | 255 -------------------
 5 files changed, 22 insertions(+), 274 deletions(-)
----------------------------------------------------------------------