mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
5f60158e99
GitOrigin-RevId: ca0966efdd7051d703ab3a6a6eaf6f421f6b7cef
35 lines
991 B
JavaScript
35 lines
991 B
JavaScript
import { setupSearch } from './search'
|
|
|
|
document
|
|
.querySelectorAll('[data-ol-contact-form-with-search]')
|
|
.forEach(setupSearch)
|
|
|
|
document
|
|
.querySelectorAll('[data-ol-open-contact-form-modal="contact-us"]')
|
|
.forEach(el => {
|
|
el.addEventListener('click', function (e) {
|
|
e.preventDefault()
|
|
$('[data-ol-contact-form-modal="contact-us"]').modal()
|
|
})
|
|
})
|
|
|
|
document
|
|
.querySelectorAll('[data-ol-open-contact-form-modal="general"]')
|
|
.forEach(el => {
|
|
el.addEventListener('click', function (e) {
|
|
e.preventDefault()
|
|
$('[data-ol-contact-form-modal="general"]').modal()
|
|
})
|
|
})
|
|
|
|
document.querySelectorAll('[data-ol-contact-form]').forEach(el => {
|
|
el.addEventListener('submit', function (e) {
|
|
const emailValue = document.querySelector(
|
|
'[data-ol-contact-form-email-input]'
|
|
).value
|
|
const thankYouEmailEl = document.querySelector(
|
|
'[data-ol-contact-form-thank-you-email]'
|
|
)
|
|
thankYouEmailEl.textContent = emailValue
|
|
})
|
|
})
|