>>2588787 lb
Here is an improved replies counter overlay script for bakers.
Counter copies the existing one instead of recomputing.
Hooks up on the existing event instead of adding a timer.
/ Display a replies counter overlay in the top right corner /$(function(){ $('head').append('<style>#thread_stats_posts_ovl { '+ 'position:fixed;top:20px;right:10px;'+ 'font:24px sans-serif;opacity:0.5;color:#f60;}</style>'); $('body').append('<div id="thread_stats_posts_ovl"/>'); function copyStats() { $('#thread_stats_posts_ovl'). text($('#thread_stats_posts').text());} $(document).on('new_post',copyStats); copyStats();});