src/cm/media/js/lib/yui/yui3.0.0/api/ddm-base.js.html
changeset 0 40c8f766c9b8
equal deleted inserted replaced
-1:000000000000 0:40c8f766c9b8
       
     1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
       
     2 <html xmlns:yui="http://yuilibrary.com/rdf/1.0/yui.rdf#">
       
     3 <head>
       
     4     <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
       
     5 	<title>API: dd   ddm-base.js  (YUI Library)</title>
       
     6 
       
     7 	<link rel="stylesheet" type="text/css" href="assets/reset-fonts-grids-min.css" />
       
     8 	<link rel="stylesheet" type="text/css" href="assets/api.css" />
       
     9 
       
    10     <script type="text/javascript" src="assets/api-js"></script>
       
    11     <script type="text/javascript" src="assets/ac-js"></script>
       
    12 </head>
       
    13 
       
    14 <body id="yahoo-com">
       
    15 
       
    16 <div id="doc3" class="yui-t2">
       
    17 	<div id="hd">
       
    18         <h1><a href="http://developer.yahoo.com/yui/" title="Yahoo! UI Library">Yahoo! UI Library</a></h1>
       
    19         <h3>dd&nbsp; <span class="subtitle">3.0.0</span></h3>
       
    20         <a href="./index.html" title="Yahoo! UI Library">Yahoo! UI Library</a> 
       
    21             &gt; <a href="./module_dd.html" title="dd">dd</a>
       
    22                 
       
    23                  &gt; ddm-base.js (source view) 
       
    24         <form onsubmit="return false">
       
    25             <div id="propertysearch">
       
    26                 Search: <input autocomplete="off" id="searchinput" />
       
    27                 <div id="searchresults">
       
    28                     &nbsp;
       
    29                 </div>
       
    30             </div>
       
    31         </form>
       
    32 	</div>
       
    33 
       
    34 	<div id="bd">
       
    35 		<div id="yui-main">
       
    36 			<div class="yui-b">
       
    37             <form action="#" name="yui-classopts-form" method="get" id="yui-classopts-form">
       
    38                 <fieldset>
       
    39                     <legend>Filters</legend>
       
    40                 <span class="classopts"><input type="checkbox" name="show_private" id="show_private" /> <label for="show_private">Show Private</label></span>
       
    41                 <span class="classopts"><input type="checkbox" name="show_protected" id="show_protected" /> <label for="show_protected">Show Protected</label></span>
       
    42                 <span class="classopts"><input type="checkbox" name="show_deprecated" id="show_deprecated" /> <label for="show_deprecated">Show Deprecated</label></span>
       
    43                 </fieldset>
       
    44             </form>
       
    45 
       
    46                     <div id="srcout">
       
    47                         <style>
       
    48                             #doc3 .classopts { display:none; }
       
    49                         </style>
       
    50                         <div class="highlight" ><pre>    <span class="c">/**</span>
       
    51 <span class="c">     * Provides the base Drag Drop Manger required for making a Node draggable.</span>
       
    52 <span class="c">     * @module dd</span>
       
    53 <span class="c">     * @submodule dd-ddm-base</span>
       
    54 <span class="c">     */</span>     
       
    55      <span class="c">/**</span>
       
    56 <span class="c">     * Provides the base Drag Drop Manger required for making a Node draggable.</span>
       
    57 <span class="c">     * @class DDM</span>
       
    58 <span class="c">     * @extends Base</span>
       
    59 <span class="c">     * @constructor</span>
       
    60 <span class="c">     * @namespace DD</span>
       
    61 <span class="c">     */</span>
       
    62     
       
    63     <span class="k">var</span> <span class="nx">DDMBase</span> <span class="o">=</span> <span class="k">function</span><span class="o">()</span> <span class="o">{</span>
       
    64         <span class="nx">DDMBase</span><span class="o">.</span><span class="nx">superclass</span><span class="o">.</span><span class="nx">constructor</span><span class="o">.</span><span class="nx">apply</span><span class="o">(</span><span class="k">this</span><span class="o">,</span> <span class="nx">arguments</span><span class="o">);</span>
       
    65     <span class="o">};</span>
       
    66 
       
    67     <span class="nx">DDMBase</span><span class="o">.</span><span class="nx">NAME</span> <span class="o">=</span> <span class="s1">&#39;ddm&#39;</span><span class="o">;</span>
       
    68 
       
    69     <span class="nx">DDMBase</span><span class="o">.</span><span class="nx">ATTRS</span> <span class="o">=</span> <span class="o">{</span>
       
    70         <span class="c">/**</span>
       
    71 <span class="c">        * @attribute dragCursor</span>
       
    72 <span class="c">        * @description The cursor to apply when dragging, if shimmed the shim will get the cursor.</span>
       
    73 <span class="c">        * @type String</span>
       
    74 <span class="c">        */</span>
       
    75         <span class="nx">dragCursor</span><span class="o">:</span> <span class="o">{</span>
       
    76             <span class="nx">value</span><span class="o">:</span> <span class="s1">&#39;move&#39;</span>
       
    77         <span class="o">},</span>
       
    78         <span class="c">/**</span>
       
    79 <span class="c">        * @attribute clickPixelThresh</span>
       
    80 <span class="c">        * @description The number of pixels to move to start a drag operation, default is 3.</span>
       
    81 <span class="c">        * @type Number</span>
       
    82 <span class="c">        */</span>
       
    83         <span class="nx">clickPixelThresh</span><span class="o">:</span> <span class="o">{</span>
       
    84             <span class="nx">value</span><span class="o">:</span> <span class="m">3</span>
       
    85         <span class="o">},</span>
       
    86         <span class="c">/**</span>
       
    87 <span class="c">        * @attribute clickTimeThresh</span>
       
    88 <span class="c">        * @description The number of milliseconds a mousedown has to pass to start a drag operation, default is 1000.</span>
       
    89 <span class="c">        * @type Number</span>
       
    90 <span class="c">        */</span>        
       
    91         <span class="nx">clickTimeThresh</span><span class="o">:</span> <span class="o">{</span>
       
    92             <span class="nx">value</span><span class="o">:</span> <span class="m">1000</span>
       
    93         <span class="o">},</span>
       
    94         <span class="c">/**</span>
       
    95 <span class="c">        * @attribute dragMode</span>
       
    96 <span class="c">        * @description This attribute only works if the dd-drop module is active. It will set the dragMode (point, intersect, strict) of all future Drag instances. </span>
       
    97 <span class="c">        * @type String</span>
       
    98 <span class="c">        */</span>        
       
    99         <span class="nx">dragMode</span><span class="o">:</span> <span class="o">{</span>
       
   100             <span class="nx">value</span><span class="o">:</span> <span class="s1">&#39;point&#39;</span><span class="o">,</span>
       
   101             <span class="nx">setter</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">mode</span><span class="o">)</span> <span class="o">{</span>
       
   102                 <span class="k">this</span><span class="o">.</span><span class="nx">_setDragMode</span><span class="o">(</span><span class="nx">mode</span><span class="o">);</span>
       
   103                 <span class="k">return</span> <span class="nx">mode</span><span class="o">;</span>
       
   104             <span class="o">}</span>           
       
   105         <span class="o">}</span>
       
   106 
       
   107     <span class="o">};</span>
       
   108 
       
   109     <span class="nx">Y</span><span class="o">.</span><span class="nx">extend</span><span class="o">(</span><span class="nx">DDMBase</span><span class="o">,</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">Base</span><span class="o">,</span> <span class="o">{</span>
       
   110         <span class="c">/**</span>
       
   111 <span class="c">        * @property _active</span>
       
   112 <span class="c">        * @description flag set when we activate our first drag, so DDM can start listening for events.</span>
       
   113 <span class="c">        * @type {Boolean}</span>
       
   114 <span class="c">        */</span>
       
   115         <span class="nx">_active</span><span class="o">:</span> <span class="kc">null</span><span class="o">,</span>
       
   116         <span class="c">/**</span>
       
   117 <span class="c">        * @private</span>
       
   118 <span class="c">        * @method _setDragMode</span>
       
   119 <span class="c">        * @description Handler for dragMode attribute setter.</span>
       
   120 <span class="c">        * @param String/Number The Number value or the String for the DragMode to default all future drag instances to.</span>
       
   121 <span class="c">        * @return Number The Mode to be set</span>
       
   122 <span class="c">        */</span>
       
   123         <span class="nx">_setDragMode</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">mode</span><span class="o">)</span> <span class="o">{</span>
       
   124             <span class="k">if</span> <span class="o">(</span><span class="nx">mode</span> <span class="o">===</span> <span class="kc">null</span><span class="o">)</span> <span class="o">{</span>
       
   125                 <span class="nx">mode</span> <span class="o">=</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">DD</span><span class="o">.</span><span class="nx">DDM</span><span class="o">.</span><span class="nx">get</span><span class="o">(</span><span class="s1">&#39;dragMode&#39;</span><span class="o">);</span>
       
   126             <span class="o">}</span>
       
   127             <span class="nx">switch</span> <span class="o">(</span><span class="nx">mode</span><span class="o">)</span> <span class="o">{</span>
       
   128                 <span class="nx">case</span> <span class="m">1</span><span class="o">:</span>
       
   129                 <span class="nx">case</span> <span class="s1">&#39;intersect&#39;</span><span class="o">:</span>
       
   130                     <span class="k">return</span> <span class="m">1</span><span class="o">;</span>
       
   131                 <span class="nx">case</span> <span class="m">2</span><span class="o">:</span>
       
   132                 <span class="nx">case</span> <span class="s1">&#39;strict&#39;</span><span class="o">:</span>
       
   133                     <span class="k">return</span> <span class="m">2</span><span class="o">;</span>
       
   134                 <span class="nx">case</span> <span class="m">0</span><span class="o">:</span>
       
   135                 <span class="nx">case</span> <span class="s1">&#39;point&#39;</span><span class="o">:</span>
       
   136                     <span class="k">return</span> <span class="m">0</span><span class="o">;</span>
       
   137             <span class="o">}</span>
       
   138             <span class="k">return</span> <span class="m">0</span><span class="o">;</span>       
       
   139         <span class="o">},</span>
       
   140         <span class="c">/**</span>
       
   141 <span class="c">        * @property CSS_PREFIX</span>
       
   142 <span class="c">        * @description The PREFIX to attach to all DD CSS class names</span>
       
   143 <span class="c">        * @type {String}</span>
       
   144 <span class="c">        */</span>
       
   145         <span class="nx">CSS_PREFIX</span><span class="o">:</span> <span class="s1">&#39;yui-dd&#39;</span><span class="o">,</span>
       
   146         <span class="nx">_activateTargets</span><span class="o">:</span> <span class="k">function</span><span class="o">()</span> <span class="o">{},</span>        
       
   147         <span class="c">/**</span>
       
   148 <span class="c">        * @private</span>
       
   149 <span class="c">        * @property _drags</span>
       
   150 <span class="c">        * @description Holder for all registered drag elements.</span>
       
   151 <span class="c">        * @type {Array}</span>
       
   152 <span class="c">        */</span>
       
   153         <span class="nx">_drags</span><span class="o">:</span> <span class="o">[],</span>
       
   154         <span class="c">/**</span>
       
   155 <span class="c">        * @property activeDrag</span>
       
   156 <span class="c">        * @description A reference to the currently active draggable object.</span>
       
   157 <span class="c">        * @type {Drag}</span>
       
   158 <span class="c">        */</span>
       
   159         <span class="nx">activeDrag</span><span class="o">:</span> <span class="kc">false</span><span class="o">,</span>
       
   160         <span class="c">/**</span>
       
   161 <span class="c">        * @private</span>
       
   162 <span class="c">        * @method _regDrag</span>
       
   163 <span class="c">        * @description Adds a reference to the drag object to the DDM._drags array, called in the constructor of Drag.</span>
       
   164 <span class="c">        * @param {Drag} d The Drag object</span>
       
   165 <span class="c">        */</span>
       
   166         <span class="nx">_regDrag</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">d</span><span class="o">)</span> <span class="o">{</span>
       
   167             <span class="k">if</span> <span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">getDrag</span><span class="o">(</span><span class="nx">d</span><span class="o">.</span><span class="nx">get</span><span class="o">(</span><span class="s1">&#39;node&#39;</span><span class="o">)))</span> <span class="o">{</span>
       
   168                 <span class="k">return</span> <span class="kc">false</span><span class="o">;</span>
       
   169             <span class="o">}</span>
       
   170             
       
   171             <span class="k">if</span> <span class="o">(!</span><span class="k">this</span><span class="o">.</span><span class="nx">_active</span><span class="o">)</span> <span class="o">{</span>
       
   172                 <span class="k">this</span><span class="o">.</span><span class="nx">_setupListeners</span><span class="o">();</span>
       
   173             <span class="o">}</span>
       
   174             <span class="k">this</span><span class="o">.</span><span class="nx">_drags</span><span class="o">.</span><span class="nx">push</span><span class="o">(</span><span class="nx">d</span><span class="o">);</span>
       
   175             <span class="k">return</span> <span class="kc">true</span><span class="o">;</span>
       
   176         <span class="o">},</span>
       
   177         <span class="c">/**</span>
       
   178 <span class="c">        * @private</span>
       
   179 <span class="c">        * @method _unregDrag</span>
       
   180 <span class="c">        * @description Remove this drag object from the DDM._drags array.</span>
       
   181 <span class="c">        * @param {Drag} d The drag object.</span>
       
   182 <span class="c">        */</span>
       
   183         <span class="nx">_unregDrag</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">d</span><span class="o">)</span> <span class="o">{</span>
       
   184             <span class="k">var</span> <span class="nx">tmp</span> <span class="o">=</span> <span class="o">[];</span>
       
   185             <span class="nx">Y</span><span class="o">.</span><span class="nx">each</span><span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">_drags</span><span class="o">,</span> <span class="k">function</span><span class="o">(</span><span class="nx">n</span><span class="o">,</span> <span class="nx">i</span><span class="o">)</span> <span class="o">{</span>
       
   186                 <span class="k">if</span> <span class="o">(</span><span class="nx">n</span> <span class="o">!==</span> <span class="nx">d</span><span class="o">)</span> <span class="o">{</span>
       
   187                     <span class="nx">tmp</span><span class="o">[</span><span class="nx">tmp</span><span class="o">.</span><span class="nx">length</span><span class="o">]</span> <span class="o">=</span> <span class="nx">n</span><span class="o">;</span>
       
   188                 <span class="o">}</span>
       
   189             <span class="o">});</span>
       
   190             <span class="k">this</span><span class="o">.</span><span class="nx">_drags</span> <span class="o">=</span> <span class="nx">tmp</span><span class="o">;</span>
       
   191         <span class="o">},</span>
       
   192         <span class="c">/**</span>
       
   193 <span class="c">        * @private</span>
       
   194 <span class="c">        * @method _setupListeners</span>
       
   195 <span class="c">        * @description Add the document listeners.</span>
       
   196 <span class="c">        */</span>
       
   197         <span class="nx">_setupListeners</span><span class="o">:</span> <span class="k">function</span><span class="o">()</span> <span class="o">{</span>
       
   198             <span class="k">this</span><span class="o">.</span><span class="nx">_active</span> <span class="o">=</span> <span class="kc">true</span><span class="o">;</span>
       
   199             <span class="k">var</span> <span class="nx">doc</span> <span class="o">=</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">get</span><span class="o">(</span><span class="nb">document</span><span class="o">);</span>
       
   200             <span class="nx">doc</span><span class="o">.</span><span class="nx">on</span><span class="o">(</span><span class="s1">&#39;mousemove&#39;</span><span class="o">,</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">bind</span><span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">_move</span><span class="o">,</span> <span class="k">this</span><span class="o">));</span>
       
   201             <span class="c">//Y.Event.nativeAdd(document, &#39;mousemove&#39;, Y.bind(this._move, this));</span>
       
   202 <span class="c"></span>            <span class="nx">doc</span><span class="o">.</span><span class="nx">on</span><span class="o">(</span><span class="s1">&#39;mouseup&#39;</span><span class="o">,</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">bind</span><span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">_end</span><span class="o">,</span> <span class="k">this</span><span class="o">));</span>
       
   203         <span class="o">},</span>
       
   204         <span class="c">/**</span>
       
   205 <span class="c">        * @private</span>
       
   206 <span class="c">        * @method _start</span>
       
   207 <span class="c">        * @description Internal method used by Drag to signal the start of a drag operation</span>
       
   208 <span class="c">        */</span>
       
   209         <span class="nx">_start</span><span class="o">:</span> <span class="k">function</span><span class="o">()</span> <span class="o">{</span>
       
   210             <span class="k">this</span><span class="o">.</span><span class="nx">fire</span><span class="o">(</span><span class="s1">&#39;ddm:start&#39;</span><span class="o">);</span>
       
   211             <span class="k">this</span><span class="o">.</span><span class="nx">_startDrag</span><span class="o">();</span>
       
   212         <span class="o">},</span>
       
   213         <span class="c">/**</span>
       
   214 <span class="c">        * @private</span>
       
   215 <span class="c">        * @method _startDrag</span>
       
   216 <span class="c">        * @description Factory method to be overwritten by other DDM&#39;s</span>
       
   217 <span class="c">        * @param {Number} x The x position of the drag element</span>
       
   218 <span class="c">        * @param {Number} y The y position of the drag element</span>
       
   219 <span class="c">        * @param {Number} w The width of the drag element</span>
       
   220 <span class="c">        * @param {Number} h The height of the drag element</span>
       
   221 <span class="c">        */</span>
       
   222         <span class="nx">_startDrag</span><span class="o">:</span> <span class="k">function</span><span class="o">()</span> <span class="o">{},</span>
       
   223         <span class="c">/**</span>
       
   224 <span class="c">        * @private</span>
       
   225 <span class="c">        * @method _endDrag</span>
       
   226 <span class="c">        * @description Factory method to be overwritten by other DDM&#39;s</span>
       
   227 <span class="c">        */</span>
       
   228         <span class="nx">_endDrag</span><span class="o">:</span> <span class="k">function</span><span class="o">()</span> <span class="o">{},</span>
       
   229         <span class="nx">_dropMove</span><span class="o">:</span> <span class="k">function</span><span class="o">()</span> <span class="o">{},</span>
       
   230         <span class="c">/**</span>
       
   231 <span class="c">        * @private</span>
       
   232 <span class="c">        * @method _end</span>
       
   233 <span class="c">        * @description Internal method used by Drag to signal the end of a drag operation</span>
       
   234 <span class="c">        */</span>
       
   235         <span class="nx">_end</span><span class="o">:</span> <span class="k">function</span><span class="o">()</span> <span class="o">{</span>
       
   236             <span class="k">if</span> <span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">activeDrag</span><span class="o">)</span> <span class="o">{</span>
       
   237                 <span class="k">this</span><span class="o">.</span><span class="nx">_endDrag</span><span class="o">();</span>
       
   238                 <span class="k">this</span><span class="o">.</span><span class="nx">fire</span><span class="o">(</span><span class="s1">&#39;ddm:end&#39;</span><span class="o">);</span>
       
   239                 <span class="k">this</span><span class="o">.</span><span class="nx">activeDrag</span><span class="o">.</span><span class="nx">end</span><span class="o">.</span><span class="nx">call</span><span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">activeDrag</span><span class="o">);</span>
       
   240                 <span class="k">this</span><span class="o">.</span><span class="nx">activeDrag</span> <span class="o">=</span> <span class="kc">null</span><span class="o">;</span>
       
   241             <span class="o">}</span>
       
   242         <span class="o">},</span>
       
   243         <span class="c">/**</span>
       
   244 <span class="c">        * @method stopDrag</span>
       
   245 <span class="c">        * @description Method will forcefully stop a drag operation. For example calling this from inside an ESC keypress handler will stop this drag.</span>
       
   246 <span class="c">        * @return {Self}</span>
       
   247 <span class="c">        * @chainable</span>
       
   248 <span class="c">        */</span>       
       
   249         <span class="nx">stopDrag</span><span class="o">:</span> <span class="k">function</span><span class="o">()</span> <span class="o">{</span>
       
   250             <span class="k">if</span> <span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">activeDrag</span><span class="o">)</span> <span class="o">{</span>
       
   251                 <span class="k">this</span><span class="o">.</span><span class="nx">_end</span><span class="o">();</span>
       
   252             <span class="o">}</span>
       
   253             <span class="k">return</span> <span class="k">this</span><span class="o">;</span>
       
   254         <span class="o">},</span>
       
   255         <span class="c">/**</span>
       
   256 <span class="c">        * @private</span>
       
   257 <span class="c">        * @method _move</span>
       
   258 <span class="c">        * @description Internal listener for the mousemove DOM event to pass to the Drag&#39;s move method.</span>
       
   259 <span class="c">        * @param {Event.Facade} ev The Dom mousemove Event</span>
       
   260 <span class="c">        */</span>
       
   261         <span class="nx">_move</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">ev</span><span class="o">)</span> <span class="o">{</span>
       
   262             <span class="k">if</span> <span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">activeDrag</span><span class="o">)</span> <span class="o">{</span>
       
   263                 <span class="k">this</span><span class="o">.</span><span class="nx">activeDrag</span><span class="o">.</span><span class="nx">_move</span><span class="o">.</span><span class="nx">call</span><span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">activeDrag</span><span class="o">,</span> <span class="nx">ev</span><span class="o">);</span>
       
   264                 <span class="k">this</span><span class="o">.</span><span class="nx">_dropMove</span><span class="o">();</span>
       
   265             <span class="o">}</span>
       
   266         <span class="o">},</span>
       
   267         <span class="c">/**</span>
       
   268 <span class="c">        * //TODO Private, rename??...</span>
       
   269 <span class="c">        * @private</span>
       
   270 <span class="c">        * @method cssSizestoObject</span>
       
   271 <span class="c">        * @description Helper method to use to set the gutter from the attribute setter.</span>
       
   272 <span class="c">        * @param {String} gutter CSS style string for gutter: &#39;5 0&#39; (sets top and bottom to 5px, left and right to 0px), &#39;1 2 3 4&#39; (top 1px, right 2px, bottom 3px, left 4px)</span>
       
   273 <span class="c">        * @return {Object} The gutter Object Literal.</span>
       
   274 <span class="c">        */</span>
       
   275         <span class="nx">cssSizestoObject</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">gutter</span><span class="o">)</span> <span class="o">{</span>
       
   276             <span class="k">var</span> <span class="nx">x</span> <span class="o">=</span> <span class="nx">gutter</span><span class="o">.</span><span class="nx">split</span><span class="o">(</span><span class="s1">&#39; &#39;</span><span class="o">);</span>
       
   277                 
       
   278             <span class="nx">switch</span> <span class="o">(</span><span class="nx">x</span><span class="o">.</span><span class="nx">length</span><span class="o">)</span> <span class="o">{</span>
       
   279                 <span class="nx">case</span> <span class="m">1</span><span class="o">:</span> <span class="nx">x</span><span class="o">[</span><span class="m">1</span><span class="o">]</span> <span class="o">=</span> <span class="nx">x</span><span class="o">[</span><span class="m">2</span><span class="o">]</span> <span class="o">=</span> <span class="nx">x</span><span class="o">[</span><span class="m">3</span><span class="o">]</span> <span class="o">=</span> <span class="nx">x</span><span class="o">[</span><span class="m">0</span><span class="o">];</span> <span class="k">break</span><span class="o">;</span>
       
   280                 <span class="nx">case</span> <span class="m">2</span><span class="o">:</span> <span class="nx">x</span><span class="o">[</span><span class="m">2</span><span class="o">]</span> <span class="o">=</span> <span class="nx">x</span><span class="o">[</span><span class="m">0</span><span class="o">];</span> <span class="nx">x</span><span class="o">[</span><span class="m">3</span><span class="o">]</span> <span class="o">=</span> <span class="nx">x</span><span class="o">[</span><span class="m">1</span><span class="o">];</span> <span class="k">break</span><span class="o">;</span>
       
   281                 <span class="nx">case</span> <span class="m">3</span><span class="o">:</span> <span class="nx">x</span><span class="o">[</span><span class="m">3</span><span class="o">]</span> <span class="o">=</span> <span class="nx">x</span><span class="o">[</span><span class="m">1</span><span class="o">];</span> <span class="k">break</span><span class="o">;</span>
       
   282             <span class="o">}</span>
       
   283 
       
   284             <span class="k">return</span> <span class="o">{</span>
       
   285                 <span class="nx">top</span>   <span class="o">:</span> <span class="nb">parseInt</span><span class="o">(</span><span class="nx">x</span><span class="o">[</span><span class="m">0</span><span class="o">],</span><span class="m">10</span><span class="o">),</span>
       
   286                 <span class="nx">right</span> <span class="o">:</span> <span class="nb">parseInt</span><span class="o">(</span><span class="nx">x</span><span class="o">[</span><span class="m">1</span><span class="o">],</span><span class="m">10</span><span class="o">),</span>
       
   287                 <span class="nx">bottom</span><span class="o">:</span> <span class="nb">parseInt</span><span class="o">(</span><span class="nx">x</span><span class="o">[</span><span class="m">2</span><span class="o">],</span><span class="m">10</span><span class="o">),</span>
       
   288                 <span class="nx">left</span>  <span class="o">:</span> <span class="nb">parseInt</span><span class="o">(</span><span class="nx">x</span><span class="o">[</span><span class="m">3</span><span class="o">],</span><span class="m">10</span><span class="o">)</span>
       
   289             <span class="o">};</span>
       
   290         <span class="o">},</span>
       
   291         <span class="c">/**</span>
       
   292 <span class="c">        * @method getDrag</span>
       
   293 <span class="c">        * @description Get a valid Drag instance back from a Node or a selector string, false otherwise</span>
       
   294 <span class="c">        * @param {String/Object} node The Node instance or Selector string to check for a valid Drag Object</span>
       
   295 <span class="c">        * @return {Object}</span>
       
   296 <span class="c">        */</span>
       
   297         <span class="nx">getDrag</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">node</span><span class="o">)</span> <span class="o">{</span>
       
   298             <span class="k">var</span> <span class="nx">drag</span> <span class="o">=</span> <span class="kc">false</span><span class="o">,</span>
       
   299                 <span class="nx">n</span> <span class="o">=</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">get</span><span class="o">(</span><span class="nx">node</span><span class="o">);</span>
       
   300             <span class="k">if</span> <span class="o">(</span><span class="nx">n</span> <span class="k">instanceof</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">Node</span><span class="o">)</span> <span class="o">{</span>
       
   301                 <span class="nx">Y</span><span class="o">.</span><span class="nx">each</span><span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">_drags</span><span class="o">,</span> <span class="k">function</span><span class="o">(</span><span class="nx">v</span><span class="o">,</span> <span class="nx">k</span><span class="o">)</span> <span class="o">{</span>
       
   302                     <span class="k">if</span> <span class="o">(</span><span class="nx">n</span><span class="o">.</span><span class="nx">compareTo</span><span class="o">(</span><span class="nx">v</span><span class="o">.</span><span class="nx">get</span><span class="o">(</span><span class="s1">&#39;node&#39;</span><span class="o">)))</span> <span class="o">{</span>
       
   303                         <span class="nx">drag</span> <span class="o">=</span> <span class="nx">v</span><span class="o">;</span>
       
   304                     <span class="o">}</span>
       
   305                 <span class="o">});</span>
       
   306             <span class="o">}</span>
       
   307             <span class="k">return</span> <span class="nx">drag</span><span class="o">;</span>
       
   308         <span class="o">}</span>
       
   309     <span class="o">});</span>
       
   310 
       
   311     <span class="nx">Y</span><span class="o">.</span><span class="nx">namespace</span><span class="o">(</span><span class="s1">&#39;DD&#39;</span><span class="o">);</span>
       
   312     <span class="nx">Y</span><span class="o">.</span><span class="nx">DD</span><span class="o">.</span><span class="nx">DDM</span> <span class="o">=</span> <span class="k">new</span> <span class="nx">DDMBase</span><span class="o">();</span>
       
   313 
       
   314     <span class="c">/**</span>
       
   315 <span class="c">    * @event ddm:start</span>
       
   316 <span class="c">    * @description Fires from the DDM before all drag events fire.</span>
       
   317 <span class="c">    * @type {Event.Custom}</span>
       
   318 <span class="c">    */</span>
       
   319     <span class="c">/**</span>
       
   320 <span class="c">    * @event ddm:end</span>
       
   321 <span class="c">    * @description Fires from the DDM after the DDM finishes, before the drag end events.</span>
       
   322 <span class="c">    * @type {Event.Custom}</span>
       
   323 <span class="c">    */</span>
       
   324 </pre></div>
       
   325 
       
   326                     </div>
       
   327 			</div>
       
   328 		</div>
       
   329 		<div class="yui-b">
       
   330             <div class="nav">
       
   331 
       
   332                     <div id="moduleList" class="module">
       
   333                         <h4>Modules</h4>
       
   334                         <ul class="content">
       
   335                                 <li class=""><a href="module_anim.html" title="anim">anim</a></li>
       
   336                                 <li class=""><a href="module_async-queue.html" title="async-queue">async-queue</a></li>
       
   337                                 <li class=""><a href="module_attribute.html" title="attribute">attribute</a></li>
       
   338                                 <li class=""><a href="module_base.html" title="base">base</a></li>
       
   339                                 <li class=""><a href="module_cache.html" title="cache">cache</a></li>
       
   340                                 <li class=""><a href="module_classnamemanager.html" title="classnamemanager">classnamemanager</a></li>
       
   341                                 <li class=""><a href="module_collection.html" title="collection">collection</a></li>
       
   342                                 <li class=""><a href="module_console.html" title="console">console</a></li>
       
   343                                 <li class=""><a href="module_console-filters.html" title="console-filters">console-filters</a></li>
       
   344                                 <li class=""><a href="module_cookie.html" title="cookie">cookie</a></li>
       
   345                                 <li class=""><a href="module_dataschema.html" title="dataschema">dataschema</a></li>
       
   346                                 <li class=""><a href="module_datasource.html" title="datasource">datasource</a></li>
       
   347                                 <li class=""><a href="module_datatype.html" title="datatype">datatype</a></li>
       
   348                                 <li class="selected"><a href="module_dd.html" title="dd">dd</a></li>
       
   349                                 <li class=""><a href="module_dom.html" title="dom">dom</a></li>
       
   350                                 <li class=""><a href="module_dump.html" title="dump">dump</a></li>
       
   351                                 <li class=""><a href="module_event.html" title="event">event</a></li>
       
   352                                 <li class=""><a href="module_event-custom.html" title="event-custom">event-custom</a></li>
       
   353                                 <li class=""><a href="module_event-simulate.html" title="event-simulate">event-simulate</a></li>
       
   354                                 <li class=""><a href="module_history.html" title="history">history</a></li>
       
   355                                 <li class=""><a href="module_imageloader.html" title="imageloader">imageloader</a></li>
       
   356                                 <li class=""><a href="module_io.html" title="io">io</a></li>
       
   357                                 <li class=""><a href="module_json.html" title="json">json</a></li>
       
   358                                 <li class=""><a href="module_node.html" title="node">node</a></li>
       
   359                                 <li class=""><a href="module_node-focusmanager.html" title="node-focusmanager">node-focusmanager</a></li>
       
   360                                 <li class=""><a href="module_node-menunav.html" title="node-menunav">node-menunav</a></li>
       
   361                                 <li class=""><a href="module_oop.html" title="oop">oop</a></li>
       
   362                                 <li class=""><a href="module_overlay.html" title="overlay">overlay</a></li>
       
   363                                 <li class=""><a href="module_plugin.html" title="plugin">plugin</a></li>
       
   364                                 <li class=""><a href="module_profiler.html" title="profiler">profiler</a></li>
       
   365                                 <li class=""><a href="module_queue-promote.html" title="queue-promote">queue-promote</a></li>
       
   366                                 <li class=""><a href="module_slider.html" title="slider">slider</a></li>
       
   367                                 <li class=""><a href="module_stylesheet.html" title="stylesheet">stylesheet</a></li>
       
   368                                 <li class=""><a href="module_substitute.html" title="substitute">substitute</a></li>
       
   369                                 <li class=""><a href="module_test.html" title="test">test</a></li>
       
   370                                 <li class=""><a href="module_widget.html" title="widget">widget</a></li>
       
   371                                 <li class=""><a href="module_widget-position.html" title="widget-position">widget-position</a></li>
       
   372                                 <li class=""><a href="module_widget-position-ext.html" title="widget-position-ext">widget-position-ext</a></li>
       
   373                                 <li class=""><a href="module_widget-stack.html" title="widget-stack">widget-stack</a></li>
       
   374                                 <li class=""><a href="module_widget-stdmod.html" title="widget-stdmod">widget-stdmod</a></li>
       
   375                                 <li class=""><a href="module_yui.html" title="yui">yui</a></li>
       
   376                         </ul>
       
   377                     </div>
       
   378 
       
   379                     <div id="classList" class="module">
       
   380                         <h4>Classes</h4>
       
   381                         <ul class="content">
       
   382                                 <li class=""><a href="DD.DDM.html" title="DD.DDM">DD.DDM</a></li>
       
   383                                 <li class=""><a href="DD.Drag.html" title="DD.Drag">DD.Drag</a></li>
       
   384                                 <li class=""><a href="DD.Drop.html" title="DD.Drop">DD.Drop</a></li>
       
   385                                 <li class=""><a href="DD.Scroll.html" title="DD.Scroll">DD.Scroll</a></li>
       
   386                                 <li class=""><a href="Plugin.DDNodeScroll.html" title="Plugin.DDNodeScroll">Plugin.DDNodeScroll</a></li>
       
   387                                 <li class=""><a href="Plugin.DDProxy.html" title="Plugin.DDProxy">Plugin.DDProxy</a></li>
       
   388                                 <li class=""><a href="Plugin.DDWindowScroll.html" title="Plugin.DDWindowScroll">Plugin.DDWindowScroll</a></li>
       
   389                                 <li class=""><a href="Plugin.Drag.html" title="Plugin.Drag">Plugin.Drag</a></li>
       
   390                                 <li class=""><a href="Plugin.DragConstrained.html" title="Plugin.DragConstrained">Plugin.DragConstrained</a></li>
       
   391                                 <li class=""><a href="Plugin.Drop.html" title="Plugin.Drop">Plugin.Drop</a></li>
       
   392                         </ul>
       
   393                     </div>
       
   394 
       
   395                     <div id="fileList" class="module">
       
   396                         <h4>Files</h4>
       
   397                         <ul class="content">        
       
   398                                 <li class=""><a href="constrain.js.html" title="constrain.js">constrain.js</a></li>
       
   399                                 <li class=""><a href="dd-drop-plugin.js.html" title="dd-drop-plugin.js">dd-drop-plugin.js</a></li>
       
   400                                 <li class=""><a href="dd-plugin.js.html" title="dd-plugin.js">dd-plugin.js</a></li>
       
   401                                 <li class="selected"><a href="ddm-base.js.html" title="ddm-base.js">ddm-base.js</a></li>
       
   402                                 <li class=""><a href="ddm-drop.js.html" title="ddm-drop.js">ddm-drop.js</a></li>
       
   403                                 <li class=""><a href="ddm.js.html" title="ddm.js">ddm.js</a></li>
       
   404                                 <li class=""><a href="drag.js.html" title="drag.js">drag.js</a></li>
       
   405                                 <li class=""><a href="drop.js.html" title="drop.js">drop.js</a></li>
       
   406                                 <li class=""><a href="proxy.js.html" title="proxy.js">proxy.js</a></li>
       
   407                                 <li class=""><a href="scroll.js.html" title="scroll.js">scroll.js</a></li>
       
   408                         </ul>
       
   409                     </div>
       
   410 
       
   411 
       
   412 
       
   413 
       
   414 
       
   415             </div>
       
   416 		</div>
       
   417 	</div>
       
   418 	<div id="ft">
       
   419         <hr />
       
   420         Copyright &copy; 2009 Yahoo! Inc. All rights reserved.
       
   421 	</div>
       
   422 </div>
       
   423 <script type="text/javascript">
       
   424     ALL_YUI_PROPS = [{"access": "private", "host": "DD.Drop", "name": "_activateShim", "url": "DD.Drop.html#method__activateShim", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_activateTargets", "url": "DD.DDM.html#method__activateTargets", "type": "method"}, {"access": "", "host": "DD.DDM", "name": "_active", "url": "DD.DDM.html#property__active", "type": "property"}, {"access": "", "host": "DD.DDM", "name": "activeDrag", "url": "DD.DDM.html#property_activeDrag", "type": "property"}, {"access": "", "host": "DD.DDM", "name": "activeDrop", "url": "DD.DDM.html#property_activeDrop", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "activeHandle", "url": "DD.Drag.html#config_activeHandle", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "activeHandleChange", "url": "DD.Drag.html#event_activeHandleChange", "type": "event"}, {"access": "private", "host": "DD.DDM", "name": "_activeShims", "url": "DD.DDM.html#property__activeShims", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "actXY", "url": "DD.Drag.html#property_actXY", "type": "property"}, {"access": "private", "host": "DD.DDM", "name": "_addActiveShim", "url": "DD.DDM.html#method__addActiveShim", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "addHandle", "url": "DD.Drag.html#method_addHandle", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "addInvalid", "url": "DD.Drag.html#method_addInvalid", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "addToGroup", "url": "DD.Drag.html#method_addToGroup", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_addValid", "url": "DD.DDM.html#method__addValid", "type": "method"}, {"access": "", "host": "DD.Scroll", "name": "align", "url": "DD.Scroll.html#method_align", "type": "method"}, {"access": "", "host": "Plugin.DragConstrained", "name": "align", "url": "Plugin.DragConstrained.html#method_align", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_align", "url": "DD.Drag.html#method__align", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_alignNode", "url": "DD.Drag.html#method__alignNode", "type": "method"}, {"access": "", "host": "Plugin.DDProxy", "name": "borderStyle", "url": "Plugin.DDProxy.html#config_borderStyle", "type": "config"}, {"access": "", "host": "Plugin.DDProxy", "name": "borderStyleChange", "url": "Plugin.DDProxy.html#event_borderStyleChange", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "bubbles", "url": "DD.Drag.html#config_bubbles", "type": "config"}, {"access": "", "host": "DD.Drop", "name": "bubbles", "url": "DD.Drop.html#config_bubbles", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "bubblesChange", "url": "DD.Drag.html#event_bubblesChange", "type": "event"}, {"access": "", "host": "DD.Drop", "name": "bubblesChange", "url": "DD.Drop.html#event_bubblesChange", "type": "event"}, {"access": "", "host": "DD.Scroll", "name": "buffer", "url": "DD.Scroll.html#config_buffer", "type": "config"}, {"access": "", "host": "DD.Scroll", "name": "bufferChange", "url": "DD.Scroll.html#event_bufferChange", "type": "event"}, {"access": "private", "host": "Plugin.DragConstrained", "name": "_cacheRegion", "url": "Plugin.DragConstrained.html#method__cacheRegion", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_calcTickArray", "url": "DD.DDM.html#method__calcTickArray", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_calcTicks", "url": "DD.DDM.html#method__calcTicks", "type": "method"}, {"access": "private", "host": "DD.Scroll", "name": "_cancelScroll", "url": "DD.Scroll.html#method__cancelScroll", "type": "method"}, {"access": "private", "host": "Plugin.DragConstrained", "name": "_checkRegion", "url": "Plugin.DragConstrained.html#method__checkRegion", "type": "method"}, {"access": "private", "host": "Plugin.DragConstrained", "name": "_checkTicks", "url": "Plugin.DragConstrained.html#method__checkTicks", "type": "method"}, {"access": "private", "host": "DD.Scroll", "name": "_checkWinScroll", "url": "DD.Scroll.html#method__checkWinScroll", "type": "method"}, {"access": "", "host": "DD.DDM", "name": "clearCache", "url": "DD.DDM.html#method_clearCache", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "clickPixelThresh", "url": "DD.Drag.html#config_clickPixelThresh", "type": "config"}, {"access": "", "host": "DD.DDM", "name": "clickPixelThresh", "url": "DD.DDM.html#config_clickPixelThresh", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "clickPixelThreshChange", "url": "DD.Drag.html#event_clickPixelThreshChange", "type": "event"}, {"access": "", "host": "DD.DDM", "name": "clickPixelThreshChange", "url": "DD.DDM.html#event_clickPixelThreshChange", "type": "event"}, {"access": "private", "host": "DD.Drag", "name": "_clickTimeout", "url": "DD.Drag.html#property__clickTimeout", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "clickTimeThresh", "url": "DD.Drag.html#config_clickTimeThresh", "type": "config"}, {"access": "", "host": "DD.DDM", "name": "clickTimeThresh", "url": "DD.DDM.html#config_clickTimeThresh", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "clickTimeThreshChange", "url": "DD.Drag.html#event_clickTimeThreshChange", "type": "event"}, {"access": "", "host": "DD.DDM", "name": "clickTimeThreshChange", "url": "DD.DDM.html#event_clickTimeThreshChange", "type": "event"}, {"access": "", "host": "Plugin.DragConstrained", "name": "con", "url": "Plugin.DragConstrained.html#property_con", "type": "property"}, {"access": "", "host": "Plugin.DragConstrained", "name": "constrain2node", "url": "Plugin.DragConstrained.html#config_constrain2node", "type": "config"}, {"access": "", "host": "Plugin.DragConstrained", "name": "constrain2nodeChange", "url": "Plugin.DragConstrained.html#event_constrain2nodeChange", "type": "event"}, {"access": "", "host": "Plugin.DragConstrained", "name": "constrain2region", "url": "Plugin.DragConstrained.html#config_constrain2region", "type": "config"}, {"access": "", "host": "Plugin.DragConstrained", "name": "constrain2regionChange", "url": "Plugin.DragConstrained.html#event_constrain2regionChange", "type": "event"}, {"access": "", "host": "Plugin.DragConstrained", "name": "constrain2view", "url": "Plugin.DragConstrained.html#config_constrain2view", "type": "config"}, {"access": "", "host": "Plugin.DragConstrained", "name": "constrain2viewChange", "url": "Plugin.DragConstrained.html#event_constrain2viewChange", "type": "event"}, {"access": "private", "host": "DD.Drag", "name": "_createEvents", "url": "DD.Drag.html#method__createEvents", "type": "method"}, {"access": "private", "host": "DD.Drop", "name": "_createEvents", "url": "DD.Drop.html#method__createEvents", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_createFrame", "url": "DD.DDM.html#method__createFrame", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_createPG", "url": "DD.DDM.html#method__createPG", "type": "method"}, {"access": "private", "host": "DD.Drop", "name": "_createShim", "url": "DD.Drop.html#method__createShim", "type": "method"}, {"access": "", "host": "DD.DDM", "name": "CSS_PREFIX", "url": "DD.DDM.html#property_CSS_PREFIX", "type": "property"}, {"access": "private", "host": "DD.DDM", "name": "cssSizestoObject", "url": "DD.DDM.html#method_cssSizestoObject", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "data", "url": "DD.Drag.html#config_data", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "dataChange", "url": "DD.Drag.html#event_dataChange", "type": "event"}, {"access": "", "host": "DD.DDM", "name": "ddm:end", "url": "DD.DDM.html#event_ddm:end", "type": "event"}, {"access": "", "host": "DD.DDM", "name": "ddm:start", "url": "DD.DDM.html#event_ddm:start", "type": "event"}, {"access": "private", "host": "DD.Drop", "name": "_deactivateShim", "url": "DD.Drop.html#method__deactivateShim", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_deactivateTargets", "url": "DD.DDM.html#method__deactivateTargets", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_debugShim", "url": "DD.DDM.html#property__debugShim", "type": "property"}, {"access": "private", "host": "DD.Drag", "name": "_defAlignFn", "url": "DD.Drag.html#method__defAlignFn", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_defDragFn", "url": "DD.Drag.html#method__defDragFn", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_defMouseDownFn", "url": "DD.Drag.html#method__defMouseDownFn", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "deltaXY", "url": "DD.Drag.html#property_deltaXY", "type": "property"}, {"access": "private", "host": "DD.Drag", "name": "destructor", "url": "DD.Drag.html#method_destructor", "type": "method"}, {"access": "private", "host": "DD.Drop", "name": "destructor", "url": "DD.Drop.html#method_destructor", "type": "method"}, {"access": "private", "host": "DD.Scroll", "name": "_dimCache", "url": "DD.Scroll.html#property__dimCache", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "drag:addHandle", "url": "DD.Drag.html#event_drag:addHandle", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:addInvalid", "url": "DD.Drag.html#event_drag:addInvalid", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:afterMouseDown", "url": "DD.Drag.html#event_drag:afterMouseDown", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:align", "url": "DD.Drag.html#event_drag:align", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:drag", "url": "DD.Drag.html#event_drag:drag", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:drophit", "url": "DD.Drag.html#event_drag:drophit", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:dropmiss", "url": "DD.Drag.html#event_drag:dropmiss", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:end", "url": "DD.Drag.html#event_drag:end", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:enter", "url": "DD.Drag.html#event_drag:enter", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:exit", "url": "DD.Drag.html#event_drag:exit", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:mouseDown", "url": "DD.Drag.html#event_drag:mouseDown", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:over", "url": "DD.Drag.html#event_drag:over", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:removeHandle", "url": "DD.Drag.html#event_drag:removeHandle", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:removeInvalid", "url": "DD.Drag.html#event_drag:removeInvalid", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "drag:start", "url": "DD.Drag.html#event_drag:start", "type": "event"}, {"access": "", "host": "DD.DDM", "name": "dragCursor", "url": "DD.DDM.html#config_dragCursor", "type": "config"}, {"access": "", "host": "DD.DDM", "name": "dragCursorChange", "url": "DD.DDM.html#event_dragCursorChange", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "dragging", "url": "DD.Drag.html#config_dragging", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "draggingChange", "url": "DD.Drag.html#event_draggingChange", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "dragMode", "url": "DD.Drag.html#config_dragMode", "type": "config"}, {"access": "", "host": "DD.DDM", "name": "dragMode", "url": "DD.DDM.html#config_dragMode", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "dragModeChange", "url": "DD.Drag.html#event_dragModeChange", "type": "event"}, {"access": "", "host": "DD.DDM", "name": "dragModeChange", "url": "DD.DDM.html#event_dragModeChange", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "dragNode", "url": "DD.Drag.html#config_dragNode", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "dragNodeChange", "url": "DD.Drag.html#event_dragNodeChange", "type": "event"}, {"access": "private", "host": "DD.DDM", "name": "_drags", "url": "DD.DDM.html#property__drags", "type": "property"}, {"access": "private", "host": "DD.Drag", "name": "_dragThreshMet", "url": "DD.Drag.html#property__dragThreshMet", "type": "property"}, {"access": "", "host": "DD.Drop", "name": "drop:enter", "url": "DD.Drop.html#event_drop:enter", "type": "event"}, {"access": "", "host": "DD.Drop", "name": "drop:exit", "url": "DD.Drop.html#event_drop:exit", "type": "event"}, {"access": "", "host": "DD.Drop", "name": "drop:hit", "url": "DD.Drop.html#event_drop:hit", "type": "event"}, {"access": "", "host": "DD.Drop", "name": "drop:over", "url": "DD.Drop.html#event_drop:over", "type": "event"}, {"access": "private", "host": "DD.DDM", "name": "_dropMove", "url": "DD.DDM.html#method__dropMove", "type": "method"}, {"access": "", "host": "DD.Scroll", "name": "end", "url": "DD.Scroll.html#method_end", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "end", "url": "DD.Drag.html#method_end", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_end", "url": "DD.DDM.html#method__end", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_endDrag", "url": "DD.DDM.html#method__endDrag", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_endTime", "url": "DD.Drag.html#property__endTime", "type": "property"}, {"access": "private", "host": "DD.Drag", "name": "_ev_md", "url": "DD.Drag.html#property__ev_md", "type": "property"}, {"access": "private", "host": "DD.Drag", "name": "_fixDragStart", "url": "DD.Drag.html#method__fixDragStart", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_fixIEMouseDown", "url": "DD.Drag.html#method__fixIEMouseDown", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_fixIEMouseUp", "url": "DD.Drag.html#method__fixIEMouseUp", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_fromTimeout", "url": "DD.Drag.html#property__fromTimeout", "type": "property"}, {"access": "", "host": "DD.DDM", "name": "getBestMatch", "url": "DD.DDM.html#method_getBestMatch", "type": "method"}, {"access": "", "host": "DD.DDM", "name": "getDrag", "url": "DD.DDM.html#method_getDrag", "type": "method"}, {"access": "", "host": "DD.DDM", "name": "getDrop", "url": "DD.DDM.html#method_getDrop", "type": "method"}, {"access": "", "host": "Plugin.DragConstrained", "name": "getRegion", "url": "Plugin.DragConstrained.html#method_getRegion", "type": "method"}, {"access": "private", "host": "DD.Scroll", "name": "_getVPRegion", "url": "DD.Scroll.html#method__getVPRegion", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_groups", "url": "DD.Drag.html#property__groups", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "groups", "url": "DD.Drag.html#config_groups", "type": "config"}, {"access": "private", "host": "DD.Drop", "name": "_groups", "url": "DD.Drop.html#property__groups", "type": "property"}, {"access": "", "host": "DD.Drop", "name": "groups", "url": "DD.Drop.html#config_groups", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "groupsChange", "url": "DD.Drag.html#event_groupsChange", "type": "event"}, {"access": "", "host": "DD.Drop", "name": "groupsChange", "url": "DD.Drop.html#event_groupsChange", "type": "event"}, {"access": "", "host": "Plugin.DragConstrained", "name": "gutter", "url": "Plugin.DragConstrained.html#config_gutter", "type": "config"}, {"access": "", "host": "Plugin.DragConstrained", "name": "gutterChange", "url": "Plugin.DragConstrained.html#event_gutterChange", "type": "event"}, {"access": "private", "host": "DD.Drag", "name": "_handleMouseDownEvent", "url": "DD.Drag.html#method__handleMouseDownEvent", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_handleMouseUp", "url": "DD.Drag.html#method__handleMouseUp", "type": "method"}, {"access": "private", "host": "DD.Drop", "name": "_handleOut", "url": "DD.Drop.html#method__handleOut", "type": "method"}, {"access": "private", "host": "DD.Drop", "name": "_handleOutEvent", "url": "DD.Drop.html#method__handleOutEvent", "type": "method"}, {"access": "private", "host": "DD.Drop", "name": "_handleOverEvent", "url": "DD.Drop.html#method__handleOverEvent", "type": "method"}, {"access": "private", "host": "DD.Drop", "name": "_handleOverTarget", "url": "DD.Drop.html#method__handleOverTarget", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_handles", "url": "DD.Drag.html#property__handles", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "handles", "url": "DD.Drag.html#config_handles", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "handlesChange", "url": "DD.Drag.html#event_handlesChange", "type": "event"}, {"access": "private", "host": "Plugin.DragConstrained", "name": "_handleStart", "url": "Plugin.DragConstrained.html#method__handleStart", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_handleTarget", "url": "DD.Drag.html#method__handleTarget", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_handleTargetOver", "url": "DD.DDM.html#method__handleTargetOver", "type": "method"}, {"access": "private", "host": "Plugin.DDProxy", "name": "_hands", "url": "Plugin.DDProxy.html#property__hands", "type": "property"}, {"access": "private", "host": "DD.DDM", "name": "_hasActiveShim", "url": "DD.DDM.html#method__hasActiveShim", "type": "method"}, {"access": "", "host": "Plugin.DDProxy", "name": "hideOnEnd", "url": "Plugin.DDProxy.html#config_hideOnEnd", "type": "config"}, {"access": "", "host": "Plugin.DDProxy", "name": "hideOnEndChange", "url": "Plugin.DDProxy.html#event_hideOnEndChange", "type": "event"}, {"access": "", "host": "DD.Scroll", "name": "horizontal", "url": "DD.Scroll.html#config_horizontal", "type": "config"}, {"access": "", "host": "DD.Scroll", "name": "horizontalChange", "url": "DD.Scroll.html#event_horizontalChange", "type": "event"}, {"access": "", "host": "DD.Scroll", "name": "host", "url": "DD.Scroll.html#config_host", "type": "config"}, {"access": "", "host": "DD.Scroll", "name": "hostChange", "url": "DD.Scroll.html#event_hostChange", "type": "event"}, {"access": "private", "host": "DD.Drag", "name": "_ieSelectBack", "url": "DD.Drag.html#property__ieSelectBack", "type": "property"}, {"access": "private", "host": "DD.Drag", "name": "_ieSelectFix", "url": "DD.Drag.html#method__ieSelectFix", "type": "method"}, {"access": "", "host": "DD.Drop", "name": "inGroup", "url": "DD.Drop.html#method_inGroup", "type": "method"}, {"access": "private", "host": "Plugin.DDProxy", "name": "_init", "url": "Plugin.DDProxy.html#method__init", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "initializer", "url": "DD.Drag.html#method_initializer", "type": "method"}, {"access": "private", "host": "DD.Drop", "name": "initializer", "url": "DD.Drop.html#method_initializer", "type": "method"}, {"access": "private", "host": "DD.Scroll", "name": "_initScroll", "url": "DD.Scroll.html#method__initScroll", "type": "method"}, {"access": "", "host": "Plugin.DragConstrained", "name": "inRegion", "url": "Plugin.DragConstrained.html#method_inRegion", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "INTERSECT", "url": "DD.DDM.html#property_INTERSECT", "type": "property"}, {"access": "private", "host": "DD.Drag", "name": "_invalids", "url": "DD.Drag.html#property__invalids", "type": "property"}, {"access": "private", "host": "DD.Drag", "name": "_invalidsDefault", "url": "DD.Drag.html#property__invalidsDefault", "type": "property"}, {"access": "", "host": "DD.DDM", "name": "isOverTarget", "url": "DD.DDM.html#method_isOverTarget", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "lastXY", "url": "DD.Drag.html#property_lastXY", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "lock", "url": "DD.Drag.html#config_lock", "type": "config"}, {"access": "", "host": "DD.Drop", "name": "lock", "url": "DD.Drop.html#config_lock", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "lockChange", "url": "DD.Drag.html#event_lockChange", "type": "event"}, {"access": "", "host": "DD.Drop", "name": "lockChange", "url": "DD.Drop.html#event_lockChange", "type": "event"}, {"access": "private", "host": "DD.DDM", "name": "_lookup", "url": "DD.DDM.html#method__lookup", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "mode", "url": "DD.DDM.html#property_mode", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "mouseXY", "url": "DD.Drag.html#property_mouseXY", "type": "property"}, {"access": "private", "host": "DD.Drag", "name": "_move", "url": "DD.Drag.html#method__move", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "move", "url": "DD.Drag.html#config_move", "type": "config"}, {"access": "private", "host": "DD.DDM", "name": "_move", "url": "DD.DDM.html#method__move", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "moveChange", "url": "DD.Drag.html#event_moveChange", "type": "event"}, {"access": "private", "host": "DD.Drag", "name": "_moveNode", "url": "DD.Drag.html#method__moveNode", "type": "method"}, {"access": "", "host": "Plugin.DDProxy", "name": "moveOnEnd", "url": "Plugin.DDProxy.html#config_moveOnEnd", "type": "config"}, {"access": "", "host": "Plugin.DDProxy", "name": "moveOnEndChange", "url": "Plugin.DDProxy.html#event_moveOnEndChange", "type": "event"}, {"access": "", "host": "Plugin.Drop", "name": "NAME", "url": "Plugin.Drop.html#property_NAME", "type": "property"}, {"access": "", "host": "Plugin.Drag", "name": "NAME", "url": "Plugin.Drag.html#property_NAME", "type": "property"}, {"access": "", "host": "Plugin.DDNodeScroll", "name": "node", "url": "Plugin.DDNodeScroll.html#config_node", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "node", "url": "DD.Drag.html#config_node", "type": "config"}, {"access": "", "host": "DD.Drop", "name": "node", "url": "DD.Drop.html#config_node", "type": "config"}, {"access": "", "host": "Plugin.DDNodeScroll", "name": "nodeChange", "url": "Plugin.DDNodeScroll.html#event_nodeChange", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "nodeChange", "url": "DD.Drag.html#event_nodeChange", "type": "event"}, {"access": "", "host": "DD.Drop", "name": "nodeChange", "url": "DD.Drop.html#event_nodeChange", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "nodeXY", "url": "DD.Drag.html#property_nodeXY", "type": "property"}, {"access": "private", "host": "DD.DDM", "name": "_noShim", "url": "DD.DDM.html#property__noShim", "type": "property"}, {"access": "", "host": "Plugin.Drop", "name": "NS", "url": "Plugin.Drop.html#property_NS", "type": "property"}, {"access": "", "host": "Plugin.Drag", "name": "NS", "url": "Plugin.Drag.html#property_NS", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "offsetNode", "url": "DD.Drag.html#config_offsetNode", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "offsetNodeChange", "url": "DD.Drag.html#event_offsetNodeChange", "type": "event"}, {"access": "", "host": "DD.DDM", "name": "otherDrops", "url": "DD.DDM.html#property_otherDrops", "type": "property"}, {"access": "", "host": "DD.Drop", "name": "overTarget", "url": "DD.Drop.html#property_overTarget", "type": "property"}, {"access": "", "host": "DD.Drop", "name": "padding", "url": "DD.Drop.html#config_padding", "type": "config"}, {"access": "", "host": "DD.Drop", "name": "paddingChange", "url": "DD.Drop.html#event_paddingChange", "type": "event"}, {"access": "", "host": "DD.Scroll", "name": "parentScroll", "url": "DD.Scroll.html#config_parentScroll", "type": "config"}, {"access": "", "host": "DD.Scroll", "name": "parentScrollChange", "url": "DD.Scroll.html#event_parentScrollChange", "type": "event"}, {"access": "private", "host": "DD.DDM", "name": "_pg", "url": "DD.DDM.html#property__pg", "type": "property"}, {"access": "private", "host": "DD.DDM", "name": "_pg_activate", "url": "DD.DDM.html#method__pg_activate", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_pg_deactivate", "url": "DD.DDM.html#method__pg_deactivate", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_pg_size", "url": "DD.DDM.html#method__pg_size", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "POINT", "url": "DD.DDM.html#property_POINT", "type": "property"}, {"access": "", "host": "Plugin.DDProxy", "name": "positionProxy", "url": "Plugin.DDProxy.html#config_positionProxy", "type": "config"}, {"access": "", "host": "Plugin.DDProxy", "name": "positionProxyChange", "url": "Plugin.DDProxy.html#event_positionProxyChange", "type": "event"}, {"access": "private", "host": "DD.Drag", "name": "_prep", "url": "DD.Drag.html#method__prep", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_prevEndFn", "url": "DD.Drag.html#method__prevEndFn", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "primaryButtonOnly", "url": "DD.Drag.html#config_primaryButtonOnly", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "primaryButtonOnlyChange", "url": "DD.Drag.html#event_primaryButtonOnlyChange", "type": "event"}, {"access": "", "host": "Plugin.DDProxy", "name": "proxy", "url": "Plugin.DDProxy.html#property_proxy", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "realXY", "url": "DD.Drag.html#property_realXY", "type": "property"}, {"access": "private", "host": "DD.DDM", "name": "_regDrag", "url": "DD.DDM.html#method__regDrag", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "region", "url": "DD.Drag.html#property_region", "type": "property"}, {"access": "", "host": "DD.Drop", "name": "region", "url": "DD.Drop.html#property_region", "type": "property"}, {"access": "private", "host": "Plugin.DragConstrained", "name": "_regionCache", "url": "Plugin.DragConstrained.html#property__regionCache", "type": "property"}, {"access": "private", "host": "DD.DDM", "name": "_regTarget", "url": "DD.DDM.html#method__regTarget", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_removeActiveShim", "url": "DD.DDM.html#method__removeActiveShim", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "removeFromGroup", "url": "DD.Drag.html#method_removeFromGroup", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "removeHandle", "url": "DD.Drag.html#method_removeHandle", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "removeInvalid", "url": "DD.Drag.html#method_removeInvalid", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_removeValid", "url": "DD.DDM.html#method__removeValid", "type": "method"}, {"access": "", "host": "Plugin.DDProxy", "name": "resizeFrame", "url": "Plugin.DDProxy.html#config_resizeFrame", "type": "config"}, {"access": "", "host": "Plugin.DDProxy", "name": "resizeFrameChange", "url": "Plugin.DDProxy.html#event_resizeFrameChange", "type": "event"}, {"access": "", "host": "DD.Scroll", "name": "scrollDelay", "url": "DD.Scroll.html#config_scrollDelay", "type": "config"}, {"access": "", "host": "DD.Scroll", "name": "scrollDelayChange", "url": "DD.Scroll.html#event_scrollDelayChange", "type": "event"}, {"access": "private", "host": "DD.Scroll", "name": "_scrolling", "url": "DD.Scroll.html#property__scrolling", "type": "property"}, {"access": "private", "host": "DD.Scroll", "name": "_scrollTimer", "url": "DD.Scroll.html#property__scrollTimer", "type": "property"}, {"access": "private", "host": "DD.Scroll", "name": "_setDimCache", "url": "DD.Scroll.html#method__setDimCache", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_setDragMode", "url": "DD.DDM.html#method__setDragMode", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_setFrame", "url": "DD.DDM.html#method__setFrame", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_setStartPosition", "url": "DD.Drag.html#method__setStartPosition", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_setupListeners", "url": "DD.DDM.html#method__setupListeners", "type": "method"}, {"access": "", "host": "DD.Drop", "name": "shim", "url": "DD.Drop.html#property_shim", "type": "property"}, {"access": "", "host": "DD.Drop", "name": "sizeShim", "url": "DD.Drop.html#method_sizeShim", "type": "method"}, {"access": "", "host": "DD.Scroll", "name": "start", "url": "DD.Scroll.html#method_start", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "start", "url": "DD.Drag.html#method_start", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_start", "url": "DD.DDM.html#method__start", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_startDrag", "url": "DD.DDM.html#method__startDrag", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_startTime", "url": "DD.Drag.html#property__startTime", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "startXY", "url": "DD.Drag.html#property_startXY", "type": "property"}, {"access": "", "host": "Plugin.DragConstrained", "name": "stickX", "url": "Plugin.DragConstrained.html#config_stickX", "type": "config"}, {"access": "", "host": "Plugin.DragConstrained", "name": "stickXChange", "url": "Plugin.DragConstrained.html#event_stickXChange", "type": "event"}, {"access": "", "host": "Plugin.DragConstrained", "name": "stickY", "url": "Plugin.DragConstrained.html#config_stickY", "type": "config"}, {"access": "", "host": "Plugin.DragConstrained", "name": "stickYChange", "url": "Plugin.DragConstrained.html#event_stickYChange", "type": "event"}, {"access": "", "host": "DD.Drag", "name": "stopDrag", "url": "DD.Drag.html#method_stopDrag", "type": "method"}, {"access": "", "host": "DD.DDM", "name": "stopDrag", "url": "DD.DDM.html#method_stopDrag", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "STRICT", "url": "DD.DDM.html#property_STRICT", "type": "property"}, {"access": "", "host": "DD.DDM", "name": "syncActiveShims", "url": "DD.DDM.html#method_syncActiveShims", "type": "method"}, {"access": "", "host": "DD.Drag", "name": "target", "url": "DD.Drag.html#property_target", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "target", "url": "DD.Drag.html#config_target", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "targetChange", "url": "DD.Drag.html#event_targetChange", "type": "event"}, {"access": "", "host": "DD.DDM", "name": "targets", "url": "DD.DDM.html#property_targets", "type": "property"}, {"access": "", "host": "Plugin.DragConstrained", "name": "tickX", "url": "Plugin.DragConstrained.html#config_tickX", "type": "config"}, {"access": "", "host": "Plugin.DragConstrained", "name": "tickXArray", "url": "Plugin.DragConstrained.html#config_tickXArray", "type": "config"}, {"access": "", "host": "Plugin.DragConstrained", "name": "tickXArrayChange", "url": "Plugin.DragConstrained.html#event_tickXArrayChange", "type": "event"}, {"access": "", "host": "Plugin.DragConstrained", "name": "tickXChange", "url": "Plugin.DragConstrained.html#event_tickXChange", "type": "event"}, {"access": "", "host": "Plugin.DragConstrained", "name": "tickY", "url": "Plugin.DragConstrained.html#config_tickY", "type": "config"}, {"access": "", "host": "Plugin.DragConstrained", "name": "tickYArray", "url": "Plugin.DragConstrained.html#config_tickYArray", "type": "config"}, {"access": "", "host": "Plugin.DragConstrained", "name": "tickYArrayChange", "url": "Plugin.DragConstrained.html#event_tickYArrayChange", "type": "event"}, {"access": "", "host": "Plugin.DragConstrained", "name": "tickYChange", "url": "Plugin.DragConstrained.html#event_tickYChange", "type": "event"}, {"access": "private", "host": "DD.Drag", "name": "_timeoutCheck", "url": "DD.Drag.html#method__timeoutCheck", "type": "method"}, {"access": "", "host": "DD.Scroll", "name": "toString", "url": "DD.Scroll.html#method_toString", "type": "method"}, {"access": "private", "host": "DD.Drag", "name": "_unprep", "url": "DD.Drag.html#method__unprep", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_unregDrag", "url": "DD.DDM.html#method__unregDrag", "type": "method"}, {"access": "private", "host": "DD.DDM", "name": "_unregTarget", "url": "DD.DDM.html#method__unregTarget", "type": "method"}, {"access": "", "host": "DD.DDM", "name": "useHash", "url": "DD.DDM.html#property_useHash", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "useShim", "url": "DD.Drag.html#config_useShim", "type": "config"}, {"access": "", "host": "DD.Drag", "name": "useShimChange", "url": "DD.Drag.html#event_useShimChange", "type": "event"}, {"access": "private", "host": "DD.Drop", "name": "_valid", "url": "DD.Drop.html#property__valid", "type": "property"}, {"access": "", "host": "DD.Drag", "name": "validClick", "url": "DD.Drag.html#method_validClick", "type": "method"}, {"access": "", "host": "DD.DDM", "name": "validDrops", "url": "DD.DDM.html#property_validDrops", "type": "property"}, {"access": "", "host": "DD.Scroll", "name": "vertical", "url": "DD.Scroll.html#config_vertical", "type": "config"}, {"access": "", "host": "DD.Scroll", "name": "verticalChange", "url": "DD.Scroll.html#event_verticalChange", "type": "event"}, {"access": "private", "host": "DD.Scroll", "name": "_vpRegionCache", "url": "DD.Scroll.html#property__vpRegionCache", "type": "property"}, {"access": "", "host": "DD.Scroll", "name": "windowScroll", "url": "DD.Scroll.html#config_windowScroll", "type": "config"}, {"access": "", "host": "Plugin.DDWindowScroll", "name": "windowScroll", "url": "Plugin.DDWindowScroll.html#config_windowScroll", "type": "config"}, {"access": "", "host": "DD.Scroll", "name": "windowScrollChange", "url": "DD.Scroll.html#event_windowScrollChange", "type": "event"}, {"access": "", "host": "Plugin.DDWindowScroll", "name": "windowScrollChange", "url": "Plugin.DDWindowScroll.html#event_windowScrollChange", "type": "event"}];
       
   425 </script>
       
   426 </body>
       
   427 </html>