API Update
The API has two new methods bound to the context of each handler
next()
and end()
;
s.step('some step', function ($) {
$.data = 'Some Data';
this.next()
});
s.step('some other step', function ($) {
console.log('finished!');
this.end();
});