mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
7 lines
233 B
JavaScript
7 lines
233 B
JavaScript
function handleRequest(request, response) {
|
|
response.setHeader("Content-Type", "text/html");
|
|
response.write("<body onload='window.parent.onloadCount++'>" +
|
|
request.method + " " +
|
|
Date.now() +
|
|
"</body>");
|
|
}
|