I tried to get MooEditable working with the new MooTools 1.3 and ran
into trouble at the section where MooEditable "mootoolizes" the
window, document and body of the IFRAME which MooEditable creates.
Here's the code in question:
// Mootoolize window, document and body
if (!this.win.$family) new Window(this.win);
if (!this.doc.$family) new Document(this.doc);
document.id(this.doc.body);
Apparently MooTools 1.3 does things differently. I can't make heads or
tails out the source code from 1.3 for the "Window, Document"
section.
Can anyone help me?