summaryrefslogtreecommitdiff
path: root/views/default/n1_theme/js.php
blob: bed07f489c33e9b67779ac76a501a3b949e679a2 (plain)
1
2
3
4
5
6
7
$(function(){
	$('.elgg-menu-item-groups').hover(function(){
		$('#topbar-groups').show();
	}, function() {
		$('#topbar-groups').hide();
	});
});