|  | @@ -93,9 +93,10 @@
 | 
	
		
			
				|  |  |          let artifacts = document.querySelectorAll("div.artifact-item");
 | 
	
		
			
				|  |  |          for (let artifact of artifacts) {
 | 
	
		
			
				|  |  |              let contents = artifact.querySelector(".artifact-contents");
 | 
	
		
			
				|  |  | +            let details = artifact.querySelector(".artifact-details");
 | 
	
		
			
				|  |  |              if (!contents || !(contents instanceof HTMLElement))
 | 
	
		
			
				|  |  |                  continue;
 | 
	
		
			
				|  |  | -            artifact.addEventListener("click", e => {
 | 
	
		
			
				|  |  | +            details.addEventListener("click", e => {
 | 
	
		
			
				|  |  |                  if(e.target instanceof HTMLElement && e.target.nodeName.toUpperCase() == "A")
 | 
	
		
			
				|  |  |                      return;
 | 
	
		
			
				|  |  |                  e.preventDefault();
 |