I started to mess with chain a little, and encountered two problems:
first: is there a way to execute all fn in chain or even better -
execute them as they are added, only in queue?
Right now I am doing this:
while (this.$chain.length) {
this.callChain();
}
and it does the trick but maybe I am missing something in mootools
code?second: in fiddle: http://jsfiddle.net/SLWEJ/ inject in "log" method is not working, what am I doing wrong? Thanks,
