mirror of
https://github.com/lexmount/moli.git
synced 2026-09-26 16:01:30 +00:00
18 lines
408 B
HTML
18 lines
408 B
HTML
<!doctype html>
|
|
<html>
|
|
<body
|
|
data-dcl-bubbles=""
|
|
data-dcl-cancelable=""
|
|
data-dcl-type=""
|
|
>
|
|
<script>
|
|
const body = document.body;
|
|
document.addEventListener('DOMContentLoaded', function(e) {
|
|
body.setAttribute('data-dcl-bubbles', String(e.bubbles));
|
|
body.setAttribute('data-dcl-cancelable', String(e.cancelable));
|
|
body.setAttribute('data-dcl-type', e.type);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|