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