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/08/15 23:51:31 UTC

[2/2] ios commit: Removing references to version 1.7.0

Removing references to version 1.7.0


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

Branch: refs/heads/master
Commit: 5c4b670f9757992cf7caf4ce5b5af98091c353da
Parents: 0cb7722
Author: Michal Mocny <mm...@gmail.com>
Authored: Wed Aug 15 14:27:57 2012 -0400
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Wed Aug 15 14:49:46 2012 -0700

----------------------------------------------------------------------
 guides/Cordova JavaScript Exception Logging.md |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/5c4b670f/guides/Cordova JavaScript Exception Logging.md
----------------------------------------------------------------------
diff --git a/guides/Cordova JavaScript Exception Logging.md b/guides/Cordova JavaScript Exception Logging.md
index 72d4fd3..6905983 100644
--- a/guides/Cordova JavaScript Exception Logging.md	
+++ b/guides/Cordova JavaScript Exception Logging.md	
@@ -20,11 +20,11 @@
 -->
 # Cordova JavaScript Exception Logging #
 
-In Cordova 1.7.0, adding a few files to your project will enable you to effectively log JavaScript errors to your console at a lower level, without using JavaScript code (window.onerror, console.log).
+In Cordova, adding a few files to your project will enable you to effectively log JavaScript errors to your console at a lower level, without using JavaScript code (window.onerror, console.log).
 
 NOTE: when you include these files, it will **always pop up a warning dialog at startup**, to remind you that you have these classes included. This is to prevent you from inadvertently shipping this code for the App Store, where this code is not allowed (it uses a private interface).
 
-1. Install **Cordova 1.7.0**
+1. Install **Cordova**
 2. In your app, add the whole **debugview** folder from  **~/Documents/CordovaLib/Classes/debugview** (where ~ signifies your Home folder). Make sure you select the radiobutton - **"Create groups for any added folders"**
 3. In your app's **MainViewController.m**, uncomment/add this code:
 
@@ -36,7 +36,7 @@ NOTE: when you include these files, it will **always pop up a warning dialog at
 4. Don't forget to add the import at the top of your **MainViewController.m** file as well:
 
         #import "CDVDebugWebView.h"
-5. For newer versions you may also need to add **-fno-objc-arc** to **CDVDebugWebView.m** build flags (in xcode, select the CordovaLib project, CordovaLib target, build phases tab, compile sources list, find CDVDebugWebView.m and add the flag).
+5. For newer versions, you may also need to add **-fno-objc-arc** to **CDVDebugWebView.m** build flags (in xcode, select the CordovaLib project, CordovaLib target, build phases tab, compile sources list, find CDVDebugWebView.m and add the flag).