[CB-1121] Camera.getPicture iOS quirk has bad code in it
diff --git a/docs/en/edge/cordova/camera/camera.getPicture.md b/docs/en/edge/cordova/camera/camera.getPicture.md
index 4ba48ea..f3378d0 100644
--- a/docs/en/edge/cordova/camera/camera.getPicture.md
+++ b/docs/en/edge/cordova/camera/camera.getPicture.md
@@ -58,7 +58,11 @@
 iOS Quirks
 ----------
 
-Including a JavaScript alert() in either of the callback functions can cause problems.  Wrap the alert in a setTimeout() to allow the iOS image picker or popover to fully close before the alert is displayed: setTimeout("alert('message');", 0);
+Including a JavaScript alert() in either of the callback functions can cause problems.  Wrap the alert in a setTimeout() to allow the iOS image picker or popover to fully close before the alert is displayed: 
+
+    setTimeout(function() { 
+        // do your thing here!
+    }, 0);
 
 Windows Phone 7 Quirks
 ----------------------