poly-js-utils
Advanced tools
Comparing version 0.0.8 to 0.0.9
{ | ||
"name": "poly-js-utils", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "Common client-side tools used in HSS Sites themes and locators.", | ||
@@ -5,0 +5,0 @@ "main": "main.js", |
@@ -18,3 +18,4 @@ /************************/ | ||
commentFieldSelector: "#contact-comments", | ||
subjectFieldSelector: "#optional-subject" | ||
subjectFieldSelector: "#additional-subject", | ||
contactFormTypeFieldSelector: "#contact-form-type", | ||
}; | ||
@@ -36,3 +37,4 @@ | ||
comments: formElement.find(options.commentFieldSelector), | ||
subject: formElement.find(options.subjectFieldSelector) | ||
subject: formElement.find(options.subjectFieldSelector), | ||
contact_form_type: formElement.find(options.contactFormTypeFieldSelector), | ||
}; | ||
@@ -39,0 +41,0 @@ |
57792
1472