views:

9

answers:

0

My Desktop Webkit enabled App uses the following:

iframe.contentDocument.defaultView.addEventListener("focus", function(event) { toolbar.show() }, false);
iframe.contentDocument.defaultView.addEventListener("blur", function(event) { toolbar.hide() }, false);

Is there a way to update this to support Touch Events on the iOS Safari Browser?

related questions