Lines Matching full:steps
241 // data of all presentation steps
251 var steps = null;
357 // wrap steps with "canvas" element
389 // get and init steps
390 steps = $$(".step", root);
391 steps.forEach( initStep );
411 step = step < 0 ? steps[ steps.length + step] : steps[ step ];
553 var prev = steps.indexOf( activeStep ) - 1;
554 prev = prev >= 0 ? steps[ prev ] : steps[ steps.length-1 ];
561 var next = steps.indexOf( activeStep ) + 1;
562 next = next < steps.length ? steps[ next ] : steps[ 0 ];
569 // All the steps that have not been shown yet are given `future` class.
577 // There classes can be used in CSS to style different types of steps.
582 steps.forEach(function (step) {
628 goto(getElementFromHash() || steps[0], 0);
725 // delegated handler for clicking on the links to presentation steps