View difference between Paste ID: u1FCn2TU and yCz0qyxY
SHOW: | | - or go back to the newest paste.
1
var j = jQuery.noConflict();
2
j(document).ready(function(){
3
	j('.show-adtl-info').click(function(){
4
		var daBox = j(this).closest('.calItem').children('.adtlInfo');
5
		if(daBox.hasClass('notBeingShown')) daBox.removeClass('notBeingShown'); 
6
		else daBox.addClass('notBeingShown');
7
	});
8
	Shadowbox.init();
9
});