1 line
795 B
JavaScript
1 line
795 B
JavaScript
document.addEventListener("DOMContentLoaded",(function(){function checkJQuery(){if(window.jQuery){initializeApp(jQuery)}else{setTimeout(checkJQuery,50)}}checkJQuery()}));function initializeApp($){$(".modal-trigger").click((function(){var target=$(this).data("target");$("#"+target).addClass("show");$("body").addClass("modal-open")}));$(".modal-close").click((function(){$(this).closest(".modal").removeClass("show");$("body").removeClass("modal-open")}));$('[data-toggle="tooltip"]').each((function(){var placement=$(this).data("placement")||"top";$(this).tooltip({placement:placement,trigger:"hover"})}));$('a[href^="#"]').on("click",(function(e){var target=$(this.getAttribute("href"));if(target.length){e.preventDefault();$("html, body").animate({scrollTop:target.offset().top-100},500)}}))} |