Ok, it is throwing an error at line 2196 of the prototype.js  Here's a
chunk of the javascript (below).  Line 2196 is the "} while(element);"
line.  After dragging/dropping the first draggable, the partial with
the drop zones is reloaded via ajax and the partial with the items
being dragged is NOT reloaded.  When you go to grab and drag another
item to the drop zones, an error occurs and that line is flagged as the
source of the error.  Any clue what may cause this?  Its an IE 7
problem, works fine in FF.  Bad .css on my part?

Thanks!

  cumulativeOffset: function(element) {
    var valueT = 0, valueL = 0;
    do {
      valueT += element.offsetTop  || 0;
      valueL += element.offsetLeft || 0;
      element = element.offsetParent;
    } while (element);
    return [valueL, valueT];
  },


--~--~---------~--~----~------------~-------~--~----~
 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to