aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/js.php
blob: 16dec59dfba5fdcad09f7f90f3be9b727112b683 (plain)
1
2
3
4
5
6
elgg.register_hook_handler('init', 'system', function() {
	// only do this on the profile page's widget canvas.
	if ($('.profile').length) {
		$('#elgg-widget-col-1').css('min-height', $('.profile').outerHeight(true) + 1);
	}
});