mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-20 10:33:36 +00:00
14 lines
310 B
HTML
14 lines
310 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Simple access of geolocation</title>
|
||
|
<head>
|
||
|
<script>
|
||
|
function loadedWindow() {
|
||
|
opener.postMessage("loaded", "*");
|
||
|
}
|
||
|
navigator.geolocation.getCurrentPosition(loadedWindow, loadedWindow, {timeout:30000});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body></body>
|
||
|
</html>
|