I ran into a problem where the positioning was incorrect on pages with Wordpress admin bar. Here is a little fix for that ( to place at the end of the that.updateSC function: )
if ( document.getElementById('wpadminbar') ) {
that.sc.css({
top: that.offset().top + that.outerHeight() - 33
});
}
I ran into a problem where the positioning was incorrect on pages with Wordpress admin bar. Here is a little fix for that ( to place at the end of the
that.updateSCfunction: )