Created
December 28, 2011 23:53
-
-
Save zspencer/1530520 to your computer and use it in GitHub Desktop.
Quick and Dirty
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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