diff options
| -rw-r--r-- | mod/profile/views/default/profile/js.php | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/profile/views/default/profile/js.php b/mod/profile/views/default/profile/js.php index edf68543c..16dec59df 100644 --- a/mod/profile/views/default/profile/js.php +++ b/mod/profile/views/default/profile/js.php @@ -1,3 +1,6 @@  elgg.register_hook_handler('init', 'system', function() { -	$('#elgg-widget-col-1').css('min-height', $('.profile').outerHeight(true) + 1); +	// only do this on the profile page's widget canvas. +	if ($('.profile').length) { +		$('#elgg-widget-col-1').css('min-height', $('.profile').outerHeight(true) + 1); +	}  });
\ No newline at end of file  | 
