Pinch To Zoom not working.

Pinch to zoom isn’t working on our application, sometimes during a load it’ll work for that but once application is loaded it will not work. Any idea’s on why this might be?

Webix sets own event handlers for touch screens that disable zoom. Try to call limit() method after layout initialization:

webix.ui({...});
webix.Touch.limit(true);