passiveEventListeners

if true, the current browser distinquishes between passive and non-passive event listeners

boolean passiveEventListeners;

Example

if (webix.env.passiveEventListeners)
    do_something();

Details

Webix touch event listeners use this option to explicitly state that touch scroll events within widgets will be prevented.

Back to top