mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
6 lines
166 B
JavaScript
6 lines
166 B
JavaScript
// run once the document is ready
|
|
$(document).ready(function() {
|
|
// initialize the contact form
|
|
if ($('#contact-form').length)
|
|
contactFormInit();
|
|
});
|