CreateJS / TweenJS

A simple but powerful tweening / animation library for Javascript. Part of the CreateJS suite of libraries.
http://createjs.com/
MIT License
3.56k stars 966 forks source link

Stage mouse up not being called #22

Closed aholla closed 11 years ago

aholla commented 11 years ago

With the following code:

stage.onMouseDown = myOnMouseDown; stage.onMouseUp = myOnMouseUp;

function myOnMouseDown(e) { console.log("down"); }

    function myOnMouseUp(e) {
        console.log("up");
    }

"myOnMouseUp" is never fired.

aholla commented 11 years ago

Sorry this should be in Easel.