aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_directory.js
blob: 29caa8d55599c05b589506b8a04c2c727d7d9bfe (plain) (blame)
1
2
3
4
5
6
7
8
9
function dirdetails(hash) {

	$.get('dirprofile' + '?f=&hash=' + hash, function( data ) {
		$.colorbox({ maxWidth: '75%', maxHeight: '75%', html: data });
		$.colorbox.resize();
	});

}