var VirtualScroll=(function(document){var vs={};var numListeners,listeners=[],initialized=!1;var touchStartX,touchStartY;var touchMult=2;var firefoxMult=15;var keyStep=120;var mouseMult=1;var bodyTouchAction;var hasWheelEvent='onwheel' in document;var hasMouseWheelEvent='onmousewheel' in document;var hasTouch='ontouchstart' in document;var hasTouchWin=navigator.msMaxTouchPoints&&navigator.msMaxTouchPoints>1;var hasPointer=!!window.navigator.msPointerEnabled;var hasKeyDown='onkeydown' in document;var isFirefox=navigator.userAgent.indexOf('Firefox')>-1;var event={y:0,x:0,deltaX:0,deltaY:0,originalEvent:null};vs.on=function(f){if(!initialized)initListeners();listeners.push(f);numListeners=listeners.length} vs.options=function(opt){keyStep=opt.keyStep||120;firefoxMult=opt.firefoxMult||15;touchMult=opt.touchMult||2;mouseMult=opt.mouseMult||1} vs.off=function(f){listeners.splice(f,1);numListeners=listeners.length;if(numListeners<=0)destroyListeners()} var notify=function(e){event.x+=event.deltaX;event.y+=event.deltaY;event.originalEvent=e;for(var i=0;i