mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-12 12:06:38 -05:00
14 lines
374 B
JavaScript
14 lines
374 B
JavaScript
// run once the document is ready
|
|
$(document).ready(function() {
|
|
$('footer').stickyFooter({ content: '#page-content' });
|
|
$(window).load(function() { $(this).trigger('resize'); });
|
|
|
|
switch (SiteVars.page) {
|
|
case '':
|
|
subscriptionFormInit();
|
|
break;
|
|
case 'contact':
|
|
contactFormInit();
|
|
break;
|
|
}
|
|
});
|