wombat/initer/script.go

12 lines
228 B
Go

package initer
const defaultScript string = `function retard() {
var x = document.getElementById("navigation");
if (x.className === "navigation") {
x.className += " retarded";
} else {
x.className = "navigation";
}
}
`