From 9ff11ff2ace14f8b7413b861c7874d6a79ad2bc6 Mon Sep 17 00:00:00 2001 From: knappe Date: Wed, 23 Jul 2014 08:53:21 -0600 Subject: [PATCH] Correct 404 when visiting `Safari Remote Debugging` There was a typo in http://moduscreate.com/enable-remote-web-inspector-in-ios-6/ leading to a 404 (an extraneous ']'). --- docs/en/edge/guide/next/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/edge/guide/next/index.md b/docs/en/edge/guide/next/index.md index 6b6ad8bcfd..1df9b059bb 100644 --- a/docs/en/edge/guide/next/index.md +++ b/docs/en/edge/guide/next/index.md @@ -114,7 +114,7 @@ Tip: It is possible on Android Nexus devices to easily flash different versions Debugging Cordova requires some setup. Unlike a desktop application, you can't simply open dev tools on your mobile device and start debugging, luckily there are some great alternatives. ## Safari Remote Debugging -The first option is Safari Remote Debugging. This works only on OSX and only with iOS 6 (and higher). It uses Safari to connect to your device (or the simulator) and will connect the browser's dev tools to the Cordova application. You get what you expect from dev tools - DOM inspection/manipulation, a JavaScript debugger, network inspection, the console, and more. For more details, see this excellent blog post: [http://moduscreate.com/enable-remote-web-inspector-in-ios-6/](http://moduscreate.com/enable-remote-web-inspector-in-ios-6/]) +The first option is Safari Remote Debugging. This works only on OSX and only with iOS 6 (and higher). It uses Safari to connect to your device (or the simulator) and will connect the browser's dev tools to the Cordova application. You get what you expect from dev tools - DOM inspection/manipulation, a JavaScript debugger, network inspection, the console, and more. For more details, see this excellent blog post: [http://moduscreate.com/enable-remote-web-inspector-in-ios-6/](http://moduscreate.com/enable-remote-web-inspector-in-ios-6/) ## Chrome Remote Debugging Virtually the same as the Safari version, this works with Android only but can be used from any desktop operating system. It requires a minimum of Android 4.4 (KitKat), minimum API level of 19, and Chrome 30+ (on the desktop). Once connected, you get the same Chrome Dev Tools experience for your mobile applications as you do with your desktop applications. Even better, the Chrome Dev Tools have a mirror option that shows your app running on the mobile device. This is more than just a view - you can scroll and click from dev tools and it updates on the mobile device. More details on Chrome Remote Debugging may be found here: [https://developers.google.com/chrome/mobile/docs/debugging](https://developers.google.com/chrome/mobile/docs/debugging)