Hi,
It seems Drag and Drop in scriptaculous 1.8 with ghosting on is broken In IE.
The culprit is the line
delete this.element._originallyAbsolute;
in finishDrag function
I don't know what the workaround for deleting DOM object properties in
IE6 is, but even in a test case which I prepared this fails.
<h1 id="test"></h1>
<script> var x=document.getElementById('test'), fruit = new Object;
fruit.size = 'large';
delete fruit.size; //works fine
x.prop = 3;
delete x.prop; //throws error in IE6/7
</script>
Anybody noticed this? Maybe we need a bugfix 1.8.1 release.
Thanks!
--
Surendra Singhi
http://ssinghi.kreeti.com, http://www.kreeti.com
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---