a
This commit is contained in:
		
							parent
							
								
									0a8be90c90
								
							
						
					
					
						commit
						81bbb7b1d7
					
				
					 726 changed files with 79 additions and 38273 deletions
				
			
		| 
						 | 
				
			
			@ -1,27 +0,0 @@
 | 
			
		|||
const closable = document.querySelectorAll("details.closable");
 | 
			
		||||
 | 
			
		||||
closable.forEach((detail) => {
 | 
			
		||||
	detail.addEventListener("toggle", () => {
 | 
			
		||||
		if (detail.open) setTargetDetail(detail);
 | 
			
		||||
	});
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
function setTargetDetail(targetDetail) {
 | 
			
		||||
	closable.forEach((detail) => {
 | 
			
		||||
		if (detail !== targetDetail) {
 | 
			
		||||
			detail.open = false;
 | 
			
		||||
		}
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
document.addEventListener("click", function (event) {
 | 
			
		||||
	const isClickInsideDetail = [...closable].some((detail) =>
 | 
			
		||||
		detail.contains(event.target)
 | 
			
		||||
	);
 | 
			
		||||
 | 
			
		||||
	if (!isClickInsideDetail) {
 | 
			
		||||
		closable.forEach((detail) => {
 | 
			
		||||
			detail.open = false;
 | 
			
		||||
		});
 | 
			
		||||
	}
 | 
			
		||||
});
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue