puiu91
3/18/2016 - 7:01 PM

gistfile1.txt

/**
 * Start the impress library and set it to autoplay
 */
(function (document, window) {

  impress().init()

  document.addEventListener('impress:stepenter', function(e) {

    //console.dir(e)

    if (typeof timing !== 'undefined')
      clearInterval(timing)

    timing = setInterval(impress().next, 5000)

  });

})(document, window);