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 2016/06/20 23:20:15 UTC

ios commit: Fixed typo in JS console.log. exeption -> exception

Repository: cordova-ios
Updated Branches:
  refs/heads/master 8e7273b2c -> e4d37be0a


Fixed typo in JS console.log. exeption -> exception


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

Branch: refs/heads/master
Commit: e4d37be0acf2352ebac241cf71ed3d7a028476e5
Parents: 8e7273b
Author: Shazron Abdullah <sh...@apache.org>
Authored: Mon Jun 20 16:20:01 2016 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Mon Jun 20 16:21:03 2016 -0700

----------------------------------------------------------------------
 CordovaLib/Classes/Public/CDVCommandDelegateImpl.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/e4d37be0/CordovaLib/Classes/Public/CDVCommandDelegateImpl.m
----------------------------------------------------------------------
diff --git a/CordovaLib/Classes/Public/CDVCommandDelegateImpl.m b/CordovaLib/Classes/Public/CDVCommandDelegateImpl.m
index be796df..fd8b3e8 100644
--- a/CordovaLib/Classes/Public/CDVCommandDelegateImpl.m
+++ b/CordovaLib/Classes/Public/CDVCommandDelegateImpl.m
@@ -155,7 +155,7 @@
 
 - (void)evalJs:(NSString*)js scheduledOnRunLoop:(BOOL)scheduledOnRunLoop
 {
-    js = [NSString stringWithFormat:@"try{cordova.require('cordova/exec').nativeEvalAndFetch(function(){%@})}catch(e){console.log('exeption nativeEvalAndFetch : '+e);};", js];
+    js = [NSString stringWithFormat:@"try{cordova.require('cordova/exec').nativeEvalAndFetch(function(){%@})}catch(e){console.log('exception nativeEvalAndFetch : '+e);};", js];
     if (scheduledOnRunLoop) {
         [self evalJsHelper:js];
     } else {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org