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