jQuery(document).ready(function($){
function checkTableScrollbar(){
var el=jQuery('#table-scroll')[0];
if(el.scrollWidth > el.clientWidth){
jQuery('#table-scroll-indicator').css('display', 'block');
}else{
jQuery('#table-scroll-indicator').css('display', 'none');
}}
checkTableScrollbar();
jQuery(window).on('resize', function(){
checkTableScrollbar();
});
});