e='dropdown']").on("click", function(e){ if((e.which == "1") && $(this).is(":hover") && !$(this).parents(".dropdown").hasClass("open")){ e.stopImmediatePropagation(); if ($(this).attr('target') !== "_blank" ) { document.location=$(this).attr("href"); } } }); } // makes href="tel:#"s valid for browsers $('a[href^="tel"]').each( function(){ $(this).attr('href', 'tel:' + $(this).attr('href').replace(/\D+/g,"")); }); // hide link titles on hover var ttext; $(".navbar-nav a").hover(function(){ ttext = $(this).attr('title'); $(this).removeAttr('title'); }, function(){ $(this).attr('title', ttext); }); // hide slideshow titles on hover var slideshowTitle; $('.ds-slide').hover(function(){ slideshowTitle = $(this).attr('title'); $(this).removeAttr('title'); }, function(){ $(this).attr('title', slideshowTitle); }); // prevents footer collapse animation on viewports when the // collapse element is already forced open $('footer [data-toggle="collapse"]').on('click', function(e){ if ($('footer .collapse:not(.in)').is(':visible')) { e.preventDefault(); e.stopPropagation(); } else { return true; } }); });