diff options
author | Andreas Gohr <andi@splitbrain.org> | 2011-07-04 22:29:21 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2011-07-04 22:29:21 +0200 |
commit | 98becf95e016e35cc6b03fd7863bddfe5c31d979 (patch) | |
tree | 337ea13211262a79a182840c963e042343164f02 /lib | |
parent | 6619f42eb475ad91a0b73d1aa6268ff41c6129a2 (diff) | |
download | rpg-98becf95e016e35cc6b03fd7863bddfe5c31d979.tar.gz rpg-98becf95e016e35cc6b03fd7863bddfe5c31d979.tar.bz2 |
deprecated drag.js
Diffstat (limited to 'lib')
-rw-r--r-- | lib/scripts/drag.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/scripts/drag.js b/lib/scripts/drag.js index 2212fb6c1..dd252d95d 100644 --- a/lib/scripts/drag.js +++ b/lib/scripts/drag.js @@ -5,6 +5,7 @@ * customization, drag can be used as a javascript prototype, it is * inheritance-aware. * + * @deprecated * @link http://nofunc.org/Drag_Drop/ */ var drag = { @@ -25,6 +26,7 @@ var drag = { * @param DOMObject handle A handle on which the obj can be dragged */ attach: function (obj,handle) { + DEPRECATED('Use jQuery.draggable() instead.'); if(handle){ handle.dragobject = obj; }else{ |