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