integration/v2/js/main.js
author Anthony Ly <anthonyly.com@gmail.com>
Tue, 18 Jun 2013 13:29:25 +0200
changeset 119 9d2a4916ee7a
parent 118 a06fb50d574f
child 128 5ce3313fb21d
permissions -rwxr-xr-x
update name of fonts

$(function(){
//masonry
	var container = $('.list-projets-3');
	container.masonry({
	  columnWidth: 465,
	  itemSelector: '.item',
	  gutter : 20
	});
//popin
	$('.new-collection').bind('click', function(e){
		e.preventDefault();
		var target = $(this).attr('href');
		$('.popin-wrap').fadeIn(function(){
			$(target).show();
		});
	});

	$('.close-popin, .popin-wrap').bind('click', function(e){
		e.preventDefault();
		e.stopPropagation();
		$('.popin-wrap').fadeOut(function(){
			$('.popin').hide();
		});
	});

	$('.popin').bind('click', function(e){
		e.stopPropagation();
	});

});//ready