Hi All,
I have noticed the following behaviour when using the dojo.fx.chain animation and connecting to its onEnd event.
What I would like to do is have a couple of animations run one after the other, then when all have finished, call another function, below is my contrived example;
var anim1 = dojo.fx.wipeOut({node:'ele'});
var anim2 = dojo.fx.wipeIn({node:'ele'});
var c = dojo.fx.chain([anim1,anim2]);
dojo.connect(c,"onEnd",someFunc);
c.play();
var anim2 = dojo.fx.wipeIn({node:'ele'});
var c = dojo.fx.chain([anim1,anim2]);
dojo.connect(c,"onEnd",someFunc);
c.play();
