aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_mail.js
blob: e3c891c2cc773ce5604698fd44fe534c738e7e6d (plain) (blame)
1
2
3
4
5
6
7
8
$(document).ready(function() { 
	$(".autotime").timeago();
	$("#recip").name_autocomplete(baseurl + '/acl', 'm', false, function(data) {
		$("#recip-complete").val(data.xid);
	});
	$('#prvmail-text').bbco_autocomplete('bbcode');
	$("#prvmail-text").editor_autocomplete(baseurl+"/acl");
});