2016-05-06 22:41:57 -04:00
|
|
|
|
2017-10-20 09:21:42 -04:00
|
|
|
<script type="text/javascript">
|
2019-10-03 22:40:42 -04:00
|
|
|
$("#comment-edit-text-input").editor_autocomplete(baseurl + '/search/acl');
|
2016-05-06 22:41:57 -04:00
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
$("#comment-edit-text-input").bbco_autocomplete('bbcode');
|
2016-05-11 20:49:55 -04:00
|
|
|
$('#mail-conversation').perfectScrollbar();
|
2016-05-19 21:40:53 -04:00
|
|
|
$('#message-preview').perfectScrollbar();
|
2017-10-20 09:21:42 -04:00
|
|
|
// Scroll to the bottom of the mail conversation.
|
2018-08-04 15:14:29 -04:00
|
|
|
var $el = $('#mail-conversation');
|
|
|
|
if ($el.length) {
|
|
|
|
$el.scrollTop($el.get(0).scrollHeight);
|
|
|
|
}
|
2016-05-06 22:41:57 -04:00
|
|
|
});
|
|
|
|
</script>
|