mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-10 03:26:38 -05:00
14 lines
266 B
JavaScript
14 lines
266 B
JavaScript
|
// run once the document is ready
|
||
|
$(document).ready(function() {
|
||
|
navInit();
|
||
|
|
||
|
switch (SiteVars.page) {
|
||
|
case "":
|
||
|
subscriptionFormInit();
|
||
|
break;
|
||
|
case "contact":
|
||
|
contactFormInit();
|
||
|
break;
|
||
|
}
|
||
|
});
|