blob: 5a5303c84a96540e093c06a92a822944a34a46f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/**
* Scroll to the end of the log on load
*/
jQuery(function () {
var $dl = jQuery('#plugin__logviewer').find('dl');
if(!$dl.length) return;
$dl.animate({ scrollTop: $dl.prop("scrollHeight")}, 500);
});
|