mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
11 lines
227 B
HTML
11 lines
227 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>
|