Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MooCanvas breaks with MooTools 1.2.3 #1

Open
shaunfreeman opened this issue Jun 20, 2009 · 0 comments
Open

MooCanvas breaks with MooTools 1.2.3 #1

shaunfreeman opened this issue Jun 20, 2009 · 0 comments

Comments

@shaunfreeman
Copy link

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:
$.Element = $.element;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant