Skip to content

Instantly share code, notes, and snippets.

@zspencer
Created December 28, 2011 23:53
Show Gist options
  • Save zspencer/1530520 to your computer and use it in GitHub Desktop.
Save zspencer/1530520 to your computer and use it in GitHub Desktop.
Quick and Dirty
$(document).ready(function() {
#depends on pitchdeck
$(document).pitchdeck({
top_links: '#nav_center a',
easing: 'easeInOutQuart',
next_button: '.next, .start',
link_labels: true
});
#depends on waypoint.js
$('.pagenumber').each(function(k, e) {
$(e).waypoint(function() {
$('#page-number').html($(e).attr('id'))
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment