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/11/21 00:37:11 UTC

js commit: Fixed whitespace issues in InAppBrowser.js

Updated Branches:
  refs/heads/master 3e61b37c6 -> 7203d335b


Fixed whitespace issues in InAppBrowser.js


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

Branch: refs/heads/master
Commit: 7203d335b59902a72a374a170b1edb04438b6a47
Parents: 3e61b37
Author: Shazron Abdullah <sh...@apache.org>
Authored: Tue Nov 20 15:37:02 2012 -0800
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Tue Nov 20 15:37:02 2012 -0800

----------------------------------------------------------------------
 lib/common/plugin/InAppBrowser.js |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/7203d335/lib/common/plugin/InAppBrowser.js
----------------------------------------------------------------------
diff --git a/lib/common/plugin/InAppBrowser.js b/lib/common/plugin/InAppBrowser.js
index dee450f..3967f95 100644
--- a/lib/common/plugin/InAppBrowser.js
+++ b/lib/common/plugin/InAppBrowser.js
@@ -22,13 +22,13 @@
 var exec = require('cordova/exec');
 
 var InAppBrowser = {
-	open : function(strUrl, strWindowName, strWindowFeatures) {
-		exec(null, null, "InAppBrowser", "open", [strUrl, strWindowName, strWindowFeatures]);
-		return InAppBrowser;
-	},
-	close : function() {
-		exec(null, null, "InAppBrowser", "close", []);
-	}
+    open : function(strUrl, strWindowName, strWindowFeatures) {
+        exec(null, null, "InAppBrowser", "open", [strUrl, strWindowName, strWindowFeatures]);
+        return InAppBrowser;
+    },
+    close : function() {
+        exec(null, null, "InAppBrowser", "close", []);
+    }
 };
 
 module.exports = InAppBrowser.open;