[Proto-Scripty] Execute an action after the queue has finished

2014-07-16 Thread Wender Jean
Hello Guys, I'd like to execute an action after the queue has finished, but I not found any way to do this in API of aculo.us, if anyone can help me. My code: var first_line = $$('#table-form tr:nth-child(4)')[0]; var second_line = $$('#table-form tr:nth-child(3)')[0];

Re: [Proto-Scripty] Execute an action after the queue has finished

2014-07-16 Thread mike
Set a callback function for Effect Effect.DropOut(first_line , {queue: 'front', limit: 2, scope: 'remove', afterFinish: function() { ...you code... }}); More: http://madrobby.github.io/scriptaculous/core-effects/ On Срд, Ліп 16, 2014 at 4:31 , Wender Jean wender.j...@gmail.com wrote: