mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
491 B
HTML
19 lines
491 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Robocop Input</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body onload="fillInput()">
|
|
<input id="input">
|
|
<script>
|
|
function fillInput() {
|
|
// fill the input with the URL hash if provided
|
|
var input = document.getElementById("input");
|
|
input.value = window.location.hash.slice(1); // remove leading #
|
|
input.focus();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|