2021-09-21 09:47:09 -04:00
|
|
|
import { inflightHelper } from '../form-helpers/hydrate-form'
|
2021-09-27 06:45:04 -04:00
|
|
|
import { disableElement } from '../utils/disableElement'
|
2021-09-21 09:47:09 -04:00
|
|
|
|
|
|
|
function setup(el) {
|
2021-09-27 06:45:04 -04:00
|
|
|
// Make the element discoverable for multi-submit.
|
|
|
|
el.setAttribute('data-ol-disabled-inflight', '')
|
|
|
|
|
2021-09-21 09:47:09 -04:00
|
|
|
inflightHelper(el)
|
|
|
|
el.addEventListener('click', function () {
|
2021-09-27 06:45:04 -04:00
|
|
|
disableElement(el)
|
2021-09-21 09:47:09 -04:00
|
|
|
el.dispatchEvent(new Event('pending'))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
document.querySelectorAll('[data-ol-slow-link]').forEach(setup)
|