A similar problem was here with the same message. This seems to have been resolved by resizing the div. I received the same debug message, but this does not affect my event handlers. It also depends on the device / simulator being tested. For example, this message is displayed on a Samsung Galaxy S2 running ICS 4.0.3, but not displayed on an emulator or Nexus S 4G running the same version of Android. Finally (for me) a message appears for any click on the web view screen. Therefore, this will mean that this is just a debugging message related to the web browsing activity, and not a telephone communication problem.
Do you have event handlers for buttons or are they just href links? I assume that {{action someAction}} will be some kind of handler, for example onclick = "functionName ()". Try connecting an event handler to any of the buttons. Using standard js syntax:
document.getElementById('ButtonID').addEventListener( 'click', function(){ alert('clicked'); }
Scorpius May 22 '12 at 17:21 2012-05-22 17:21
source share