mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
10 lines
217 B
HTML
10 lines
217 B
HTML
<script>
|
|
function doe(){
|
|
window.focus();
|
|
window.getSelection().collapse(document.body, 0);
|
|
}
|
|
setTimeout(doe,50);
|
|
|
|
setTimeout(function() {window.location.reload()}, 200);
|
|
</script>
|
|
<span contenteditable="true"></span>
|