( function( $ ) { function removeNoJsClass() { $( 'html:first' ).removeClass( 'no-js' ); } /* Superfish the menu drops ---------------------*/ function superfishSetup() { $('.menu').superfish({ delay: 200, animation: {opacity:'show', height:'show'}, speed: 'fast', cssArrows: true, autoArrows: true, dropShadows: false }); } function modifyPosts() { /* Insert Line Break Before More Links ---------------------*/ $('
').insertBefore('.postarea .more-link'); /* Hide Comments When No Comments Activated ---------------------*/ $('.nocomments').parent().css('display', 'none'); /* Animate Page Scroll ---------------------*/ $(".scroll").click(function(event){ event.preventDefault(); $('html,body').animate({scrollTop:$(this.hash).offset().top}, 500); }); /* Fit Vids ---------------------*/ $('.postarea').fitVids(); } $( document ) .ready( removeNoJsClass ) .ready( superfishSetup ) .ready( modifyPosts ) .on( 'post-load', modifyPosts ); })( jQuery );