Merge pull request #32 from dougireton/slide_section
[deck.js.git] / introduction / introduction.js
blobdf37aeb3413c063444c444ffe5984f15a87057c6
1 $(function() {
2 // Deck initialization
3 $.deck('.slide');
5 $('#style-themes').change(function() {
6 $('#style-theme-link').attr('href', $(this).val());
7 });
9 $('#transition-themes').change(function() {
10 $('#transition-theme-link').attr('href', $(this).val());
11 });
12 });