<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
$(function(){
	$('.bbs-html img').each(function(){
		if( this.width &gt; 300 ){
			$(this).addClass('board-picture').css('cursor', 'pointer');
		}
	});

	new $.module['modal'](
		$('.board-picture')
	);

	if( location.hash != '#u' ) {
		history.pushState(null, null, "#u");
	}

	$.window.on("hashchange",  function(){
		if( location.hash == '' ){
			location.href = '/community_news/index/page/88';
		}
	});

});

</pre></body></html>