Lightbox Gallery 이미지 링크 오류 디버깅

이미지 클릭할 때 이미지 링크 주소로 바뀌면서 colorbox 가 나타날 때 colorbox 창을 닫아도 이전화면으로 돌아가지 않는 현상이 있을 수 있다.
이 때는 다음과 같이 e.stopImmediatePropagation(); 구문을 추가해 주면 된다.

 
// Add ColorBox's event bindings
	function addBindings() {
...
				$('.' + boxElement, document).live('click', function (e) {
			        // ignore non-left-mouse-clicks and clicks modified with ctrl / command, shift, or alt.
			        // See: http://jacklmoore.com/notes/click-events/
			        if (!(e.which > 1 || e.shiftKey || e.altKey || e.metaKey)) {
			            e.preventDefault();
						e.stopImmediatePropagation();
			            launch(this);
			        }
			    });
....
	}
...