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