mirror of
				https://github.com/bigskysoftware/htmx.git
				synced 2025-11-04 07:24:06 +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;
 | 
						|
    }
 | 
						|
}
 |