aboutsummaryrefslogtreecommitdiff
path: root/mod/messages/views/default/messages/js.php
blob: 60cf36b9267015eda25338dfd9857b84db287436 (plain)
1
2
3
4
5
6
7
// messages plugin toggle
elgg.register_hook_handler('init', 'system', function() {
	$("#messages-toggle").click(function() {
		$('input[type=checkbox]').click();
	});
});