-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
the $.element is no longer defined in MooTools 1.2.3 and there breaks MooCanvas if using MooTools 1.2.3
I have temporally fixed this by defining $.element in Canvas.js:
$.element = function(el, nocash){
$uid(el);
if (!nocash && !el.$family && !(/^object|embed$/i).test(el.tagName)){
var proto = Element.Prototype;
for (var p in proto) el[p] = proto[p];
};
return el;
};
just before:
Metadata
Metadata
Assignees
Labels
No labels