mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
11 lines
346 B
JavaScript
11 lines
346 B
JavaScript
function handleRequest(request, response)
|
|
{
|
|
response.processAsync();
|
|
|
|
timer = Components.classes["@mozilla.org/timer;1"].
|
|
createInstance(Components.interfaces.nsITimer);
|
|
timer.init(function() {
|
|
response.write("Here the content. But slowly.");
|
|
response.finish();
|
|
}, 1000, Components.interfaces.nsITimer.TYPE_ONE_SHOT);
|
|
}
|