1
0
Fork 0
mirror of synced 2024-10-03 10:36:59 +13:00

preventDefault on clicks, in preview

This commit is contained in:
Michael Shanks 2020-06-09 11:44:33 +01:00
parent 5799fbf23f
commit 1c1447011b

View file

@ -53,6 +53,11 @@ export default `<html>
let styles
let selectedComponentStyle
document.addEventListener("click", function(e) {
e.preventDefault()
e.stopPropagation()
return false;
}, true)
import('/_builder/budibase-client.esm.mjs')
.then(module => {