mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
|
import { inflightHelper } from '../form-helpers/hydrate-form'
|
||
|
|
||
|
function setup(el) {
|
||
|
inflightHelper(el)
|
||
|
el.addEventListener('click', function () {
|
||
|
el.dispatchEvent(new Event('pending'))
|
||
|
})
|
||
|
}
|
||
|
|
||
|
document.querySelectorAll('[data-ol-slow-link]').forEach(setup)
|