mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
417 B
HTML
17 lines
417 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Search Results</title>
|
||
|
<script type="text/javascript">
|
||
|
function show() {
|
||
|
var results = /\?q=(.+)$/.exec(window.document.location);
|
||
|
searchterm = decodeURIComponent(results[1].replace(/\+/g, " "))
|
||
|
document.getElementById("term").innerHTML = searchterm;
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="show();">
|
||
|
<p>Search term was '<span id="term"></span>'.</p>
|
||
|
</body>
|
||
|
</html>
|