Closed GoogleCodeExporter closed 9 years ago
Original comment by dean.edw...@gmail.com
on 30 Jul 2007 at 5:48
One thing I've seen: IE's cloneNode also clones (or just copies)
attachEvent-added
event listeners....
Original comment by doek...@gmail.com
on 31 Jul 2007 at 2:29
This code fixes it:
// remove the base2ID for clones
extend(Element.prototype, "cloneNode", function(deep) {
var clone = this.base(deep || false);
clone.base2ID = undefined;
return clone;
});
Will check this in soon.
Original comment by dean.edw...@gmail.com
on 10 Aug 2007 at 4:49
Fixed.
Original comment by dean.edw...@gmail.com
on 10 Aug 2007 at 9:52
Original issue reported on code.google.com by
ffreak@gmail.com
on 30 Jul 2007 at 3:16