summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorChristophe.Boulain <>2008-10-20 08:08:22 +0000
committerChristophe.Boulain <>2008-10-20 08:08:22 +0000
commit102f018392b21d5447500c4f3d99f9e5c026d22a (patch)
treee94eaa5220915de152c6777375a874d876a6ef0a /framework
parent06cfa38f8457a950b3be1855452a81394e4e3629 (diff)
Fix a small bug in scriptaculous dragdrop script. See http://www.pradosoft.com/forum/index.php/topic,9630.msg49166.html#msg49166
Diffstat (limited to 'framework')
-rw-r--r--framework/Web/Javascripts/source/scriptaculous-1.8.1/dragdrop.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/Javascripts/source/scriptaculous-1.8.1/dragdrop.js b/framework/Web/Javascripts/source/scriptaculous-1.8.1/dragdrop.js
index bf429c26..14f9546e 100644
--- a/framework/Web/Javascripts/source/scriptaculous-1.8.1/dragdrop.js
+++ b/framework/Web/Javascripts/source/scriptaculous-1.8.1/dragdrop.js
@@ -407,7 +407,7 @@ var Draggable = Class.create({
if(this.options.ghosting) {
if (!this.element._originallyAbsolute)
Position.relativize(this.element);
- delete this.element._originallyAbsolute;
+ this.element._originallyAbsolute=null;
Element.remove(this._clone);
this._clone = null;
}