<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">console.log('loaded: showswitch.js');
$(document).ready(function(e){
	$('.showswitch').click(function(e){
		var targetID = $(this).attr('data-target');
		var target = $('#'+targetID);
		var selfhide = $(this).attr('data-selfhide');
		console.log('selfhide: '+selfhide);
		if($(this).attr('data-selfhide') == 'true'){
			$(this).css('display','none');
		}
		if($(target).css('display') == 'none'){
			$(target).css('display','block');	
		}
		else{
			$(target).css('display','none');	
			
		}
		e.preventDefault();
	});
});</pre></body></html>