You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2012/12/11 00:39:26 UTC

ios commit: [CB-1988] Update JavaScript for iOS to 2.3.0rc2

Updated Branches:
  refs/heads/master 46682ecf4 -> 145d4578c


[CB-1988] Update JavaScript for iOS to 2.3.0rc2


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

Branch: refs/heads/master
Commit: 145d4578c33808e3ddbe1aae266291053eb196f4
Parents: 46682ec
Author: Shazron Abdullah <sh...@apache.org>
Authored: Mon Dec 10 15:39:18 2012 -0800
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Mon Dec 10 15:39:18 2012 -0800

----------------------------------------------------------------------
 CordovaLib/cordova.ios.js |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/145d4578/CordovaLib/cordova.ios.js
----------------------------------------------------------------------
diff --git a/CordovaLib/cordova.ios.js b/CordovaLib/cordova.ios.js
index 7cf3cd6..54bc68a 100644
--- a/CordovaLib/cordova.ios.js
+++ b/CordovaLib/cordova.ios.js
@@ -1,6 +1,6 @@
-// commit f29591f869db25f7fa52766e4ac5b60ced38a59f
+// commit 861ff3d507fd5c64ed789d8abe360690e588252e
 
-// File generated at :: Wed Nov 28 2012 17:33:26 GMT-0800 (PST)
+// File generated at :: Mon Dec 10 2012 15:38:02 GMT-0800 (PST)
 
 /*
  Licensed to the Apache Software Foundation (ASF) under one
@@ -3221,7 +3221,7 @@ module.exports = GlobalizationError;
 define("cordova/plugin/InAppBrowser", function(require, exports, module) {
 
 var exec = require('cordova/exec');
-       
+
 function InAppBrowser()
 {
    var _channel = require('cordova/channel');
@@ -3238,7 +3238,7 @@ InAppBrowser.prototype._eventHandler = function(event)
         this.channels[event.type].fire(event);
     }
 }
-       
+
 InAppBrowser.open = function(strUrl, strWindowName, strWindowFeatures)
 {
     var iab = new InAppBrowser();
@@ -3256,16 +3256,16 @@ InAppBrowser.prototype.close = function(eventname, f)
 
 InAppBrowser.prototype.addEventListener = function(eventname, f)
 {
-	if (eventname in this.channels) {
-	    this.channels[eventname].subscribe(f);
-	}
+    if (eventname in this.channels) {
+        this.channels[eventname].subscribe(f);
+    }
 }
 
 InAppBrowser.prototype.removeEventListener = function(eventname, f)
 {
-	if (eventname in this.channels) {
-	    this.channels[eventname].unsubscribe(f);
-	}
+    if (eventname in this.channels) {
+        this.channels[eventname].unsubscribe(f);
+    }
 }
 
 module.exports = InAppBrowser.open;