//>>built define("dojox/mdnd/AutoScroll",["dojo/_base/kernel","dojo/_base/declare","dojo/_base/lang","dojo/_base/connect","dojo/_base/window"],function(_1){ var as=_1.declare("dojox.mdnd.AutoScroll",null,{interval:3,recursiveTimer:10,marginMouse:50,constructor:function(){ this.resizeHandler=_1.connect(_1.global,"onresize",this,function(){ this.getViewport(); }); _1.ready(_1.hitch(this,"init")); },init:function(){ this._html=(_1.isWebKit)?_1.body():_1.body().parentNode; this.getViewport(); },getViewport:function(){ var d=_1.doc,dd=d.documentElement,w=window,b=_1.body(); if(_1.isMozilla){ this._v={"w":dd.clientWidth,"h":w.innerHeight}; }else{ if(!_1.isOpera&&w.innerWidth){ this._v={"w":w.innerWidth,"h":w.innerHeight}; }else{ if(!_1.isOpera&&dd&&dd.clientWidth){ this._v={"w":dd.clientWidth,"h":dd.clientHeight}; }else{ if(b.clientWidth){ this._v={"w":b.clientWidth,"h":b.clientHeight}; } } } } },setAutoScrollNode:function(_2){ this._node=_2; },setAutoScrollMaxPage:function(){ this._yMax=this._html.scrollHeight; this._xMax=this._html.scrollWidth; },checkAutoScroll:function(e){ if(this._autoScrollActive){ this.stopAutoScroll(); } this._y=e.pageY; this._x=e.pageX; if(e.clientXthis._v.w-this.marginMouse){ this._autoScrollActive=true; this._autoScrollRight(e); } } if(e.clientYthis._v.h-this.marginMouse){ this._autoScrollActive=true; this._autoScrollDown(); } } },_autoScrollDown:function(){ if(this._timer){ clearTimeout(this._timer); } if(this._autoScrollActive&&this._y+this.marginMouse0){ this._html.scrollTop-=this.interval; this._node.style.top=(parseInt(this._node.style.top)-this.interval)+"px"; this._y-=this.interval; this._timer=setTimeout(_1.hitch(this,"_autoScrollUp"),this.recursiveTimer); } },_autoScrollRight:function(){ if(this._timer){ clearTimeout(this._timer); } if(this._autoScrollActive&&this._x+this.marginMouse0){ this._html.scrollLeft-=this.interval; this._node.style.left=(parseInt(this._node.style.left)-this.interval)+"px"; this._x-=this.interval; this._timer=setTimeout(_1.hitch(this,"_autoScrollLeft"),this.recursiveTimer); } },stopAutoScroll:function(){ if(this._timer){ clearTimeout(this._timer); } this._autoScrollActive=false; },destroy:function(){ _1.disconnect(this.resizeHandler); }}); dojox.mdnd.autoScroll=null; dojox.mdnd.autoScroll=new dojox.mdnd.AutoScroll(); return as; });