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/06/11 03:27:09 UTC

ios commit: updated cordova js file

Updated Branches:
  refs/heads/3.0.0 7057af984 -> 972e5ce19


updated cordova js file


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

Branch: refs/heads/3.0.0
Commit: 972e5ce199ccbc9da274266a2a30048a1d4e08b1
Parents: 7057af9
Author: Steven Gill <st...@gmail.com>
Authored: Mon Jun 10 18:26:53 2013 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Mon Jun 10 18:26:53 2013 -0700

----------------------------------------------------------------------
 CordovaLib/cordova.js | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/972e5ce1/CordovaLib/cordova.js
----------------------------------------------------------------------
diff --git a/CordovaLib/cordova.js b/CordovaLib/cordova.js
index 0dc412a..22dd433 100644
--- a/CordovaLib/cordova.js
+++ b/CordovaLib/cordova.js
@@ -1,5 +1,5 @@
 // Platform: ios
-// 2.8.0-0-g6208c95
+// 2.7.0rc1-84-g62c5786
 /*
  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.8.0-0-g6208c95';
+var CORDOVA_JS_BUILD_LABEL = '2.7.0rc1-84-g62c5786';
 // file: lib/scripts/require.js
 
 var require,
@@ -3300,6 +3300,9 @@ InAppBrowser.prototype = {
     close: function (eventname) {
         exec(null, null, "InAppBrowser", "close", []);
     },
+    show: function (eventname) {
+      exec(null, null, "InAppBrowser", "show", []);
+    },
     addEventListener: function (eventname,f) {
         if (eventname in this.channels) {
             this.channels[eventname].subscribe(f);