Reputation: 23
i want to remove the Event-Handlers from Sencha Touch, so that zooming in Mobile Safari works (Currently blocked by Sencha). Is there any solution for my Problem?
Upvotes: 2
Views: 1041
Reputation: 92274
Sencha touch relies on the viewport not being zoomable. The entire layout engine is based on the assumption that the viewport is the size of the screen. You can listen for your own pinch event and zoom some part of the UI that you choose to fix
Sencha Touch do not set scale and allow scrolling and resize on iPhone or iPad
http://www.sencha.com/forum/showthread.php?174008-How-to-Enable-Pinch-Zoom-to-HTML-content
http://www.sencha.com/forum/showthread.php?163059-Native-Zoom
Upvotes: 1
Reputation: 4048
Maybe this will help:
http://docs.sencha.com/touch/2-0/#!/api/Ext.mixin.Observable-method-suspendEvents
http://docs.sencha.com/touch/2-0/#!/api/Ext.mixin.Observable-method-resumeEvents
Upvotes: 0