mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-11 20:08:39 +00:00
21 lines
285 B
HTML
21 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>
|