Topic: Quick fix for Mootools 1.2.3 upgrade
Just upgraded to latest mootools and keynav & drag'n'drop stopped working!!
So have edited line 64 of the Mif.Tree section:
Replace:
if (MooTools.version=='1.2.2' && this.options.initialize) this.options.initialize.call(this);
With
if (MooTools.version>='1.2.2' && this.options.initialize) this.options.initialize.call(this);
OR
if ((MooTools.version=='1.2.2' || MooTools.version=='1.2.3') && this.options.initialize) this.options.initialize.call(this);
The 1st replacement appears to work ok so I guess it's good to use.
Hope this helps someone.