mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 06:48:38 +09:00
13 lines
310 B
HTML
13 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>
|