summaryrefslogtreecommitdiffstats
path: root/src/draghandler.js
blob: 36fc7245f6e498a94d364dc0d8532f8f43ca3ca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
*
*  Crossbrowser Drag Handler
*  http://www.webtoolkit.info/
*
**/

function draghandler(webclient)
{
    this.webclient = webclient;
}

var DragHandler = {
    // private property.
    _oElem : null,
    webclient : null,


}