jQuery(document).ready(function($) { /** * ONE-PAGE-MENU-FIX * Will add the full URL to an anker-link on pages different from home. * Needs the global variable CL_BASE_URL to be set (which contains the base URL of the blog). */ /*if($('body.home').length===0) { $('.fusion-main-menu > ul > li > a').each(function() { var href = $(this).attr('href'); if(href.length>0 && href[0]==='#') { $(this).attr('href',CL_BASE_URL+'/'+href); } }); }*/ //hide button line in tfs-slider if empty (cause it makes the text offcenter) /*var button = $('.tfs-slider .slide-content-container .buttons'); if(button.length>0 && button.text().trim()==='') { button.hide(); }*/ });