2017-10-18 02:25:22 -04:00
|
|
|
{{if $alternate}}
|
|
|
|
<link href='{{$alternate}}' rel='alternate' type='application/atom+xml'>
|
|
|
|
{{/if}}
|
|
|
|
{{if $conversation}}
|
|
|
|
<link href='{{$conversation}}' rel='conversation' type='application/atom+xml'>
|
|
|
|
{{/if}}
|
2013-04-23 07:47:57 -04:00
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
2019-10-03 22:40:42 -04:00
|
|
|
$(".comment-edit-wrapper textarea").editor_autocomplete(baseurl + '/search/acl');
|
2013-04-23 07:47:57 -04:00
|
|
|
// make auto-complete work in more places
|
2019-10-03 22:40:42 -04:00
|
|
|
$(".wall-item-comment-wrapper textarea").editor_autocomplete(baseurl + '/search/acl');
|
2013-04-23 07:47:57 -04:00
|
|
|
});
|
|
|
|
</script>
|