mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 11:53:07 +09:00
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/licenses/publicdomain/ */
|
|
|
|
function onLoad() {
|
|
document.documentElement.style.backgroundColor = "green";
|
|
}
|
|
|
|
addEventListener("load", onLoad, false);
|