mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-29 14:04:22 +00:00
18 lines
526 B
JavaScript
18 lines
526 B
JavaScript
var server = makeServer();
|
|
var autoRespond = localStorage.getItem('hx-scratch-autorespond') == "true";
|
|
server.autoRespond = autoRespond;
|
|
ready(function () {
|
|
if (autoRespond) {
|
|
byId("autorespond").setAttribute("checked", "true");
|
|
}
|
|
})
|
|
function toggleAutoRespond() {
|
|
if (server.autoRespond) {
|
|
localStorage.removeItem('hx-scratch-autorespond');
|
|
server.autoRespond = false;
|
|
} else {
|
|
localStorage.setItem('hx-scratch-autorespond', 'true');
|
|
server.autoRespond = true;
|
|
}
|
|
}
|