add editor autocompleters on cards page

This commit is contained in:
zotlabs 2017-08-28 20:11:08 -07:00
parent 06be21af05
commit b80f0b8960

View File

@ -1,3 +1,9 @@
$(document).ready( function() {
$(".autotime").timeago();
/* autocomplete @nicknames */
$(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl?f=&n=1");
/* autocomplete bbcode */
$(".comment-edit-form textarea").bbco_autocomplete('bbcode');
});