Comment out the debug logging on send message.
authorDennis Schafroth <dennis@indexdata.com>
Mon, 28 Jun 2010 11:19:55 +0000 (13:19 +0200)
committerDennis Schafroth <dennis@indexdata.com>
Mon, 28 Jun 2010 11:19:55 +0000 (13:19 +0200)
www/iphone/iphone.js

index 9c9fbe0..93008b1 100644 (file)
@@ -34,8 +34,10 @@ callback.send = function()
        var message = "myapp:" + args.join(":");
        if (this.type == 'iphone')
                document.location = message;
-       else
-               document.getElementById("log").innerHTML = message;
+       else {
+           // Debug communication with Web View
+           // document.getElementById("log").innerHTML = message;
+       }
 }