mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
20 lines
285 B
HTML
20 lines
285 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
// Silence eslint complaint about the onload below.
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
"use strict";
|
|
|
|
function load() {
|
|
(window.opener || window.parent).hurray();
|
|
window.close();
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload='load()'>
|
|
</body>
|
|
|
|
</html>
|