Sha256: 195b4a73fe04526e2a3d816a9821f6f863bae7155f0662fdbe31500a69ac9ebb
Contents?: true
Size: 413 Bytes
Versions: 11
Compression:
Stored size: 413 Bytes
Contents
pageflow.History = function(slideshow) { slideshow.on('slideshowchangepage', function() { window.location.hash = '#' + slideshow.currentPage().attr('id'); }); $(window).on('hashchange', function() { slideshow.goToByPermaId(getHash()); }); slideshow.goToByPermaId(getHash()); function getHash() { var match = window.location.href.match(/#(.*)$/); return match ? match[1] : ''; } };
Version data entries
11 entries across 11 versions & 1 rubygems