From 0b7818d6b585ce092df8645755026937876fab8a Mon Sep 17 00:00:00 2001 From: Dr Azad Rasul Date: Thu, 4 Jan 2024 22:09:57 +0300 Subject: [PATCH] Delete assets/js/_main.js --- assets/js/_main.js | 67 ---------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 assets/js/_main.js diff --git a/assets/js/_main.js b/assets/js/_main.js deleted file mode 100644 index 63a865a..0000000 --- a/assets/js/_main.js +++ /dev/null @@ -1,67 +0,0 @@ -/*! Responsive Menu */ -// https://tympanus.net/codrops/2013/05/08/responsive-retina-ready-menu/ -// The function to change the class -var changeClass = function (r,className1,className2) { - var regex = new RegExp("(?:^|\\s+)" + className1 + "(?:\\s+|$)"); - if( regex.test(r.className) ) { - r.className = r.className.replace(regex,' '+className2+' '); - } - else{ - r.className = r.className.replace(new RegExp("(?:^|\\s+)" + className2 + "(?:\\s+|$)"),' '+className1+' '); - } - return r.className; -}; -// Creating our button in JS for smaller screens -var menuElements = document.getElementById('site-nav'); -menuElements.insertAdjacentHTML('afterBegin',''); - -// Toggle the class on click to show / hide the menu -document.getElementById('menutoggle').onclick = function() { - changeClass(this, 'navtoggle active', 'navtoggle'); -}; -// https://tympanus.net/codrops/2013/05/08/responsive-retina-ready-menu/comment-page-2/#comment-438918 -document.onclick = function(e) { - var mobileButton = document.getElementById('menutoggle'), - buttonStyle = mobileButton.currentStyle ? mobileButton.currentStyle.display : getComputedStyle(mobileButton, null).display; - - if(buttonStyle === 'block' && e.target !== mobileButton && new RegExp(' ' + 'active' + ' ').test(' ' + mobileButton.className + ' ')) { - changeClass(mobileButton, 'navtoggle active', 'navtoggle'); - } -}; - -/*! Plugin options and other jQuery stuff */ - -// FitVids options -$(function() { - $("article").fitVids(); -}); - -// Table of Contents toggle -$(function() { - $(".toc h3").click(function () { - $("#drawer").toggleClass("js-hidden"); - }); -}); - -// Add lightbox class to all image links -$("a[href$='.jpg'],a[href$='.jpeg'],a[href$='.JPG'],a[href$='.png'],a[href$='.gif']").addClass("image-popup"); - -// Magnific-Popup options -$(document).ready(function() { - $('.image-popup').magnificPopup({ - type: 'image', - tLoading: 'Loading image #%curr%...', - gallery: { - enabled: true, - navigateByImgClick: true, - preload: [0,1] // Will preload 0 - before current, and 1 after the current image - }, - image: { - tError: 'Image #%curr% could not be loaded.', - }, - removalDelay: 300, // Delay in milliseconds before popup is removed - // Class that is added to body when popup is open. - // make it unique to apply your CSS animations just to this exact popup - mainClass: 'mfp-fade' - }); -});