kev kem site b

This commit is contained in:
CHIEFSOFT\ameye
2024-09-08 14:55:21 -04:00
parent ed2c9e57cf
commit ecc428180a
1436 changed files with 250555 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
/*
Template Name: Toner eCommerce + Admin HTML Template
Author: Themesbrand
Website: https://Themesbrand.com/
Contact: Themesbrand@gmail.com
File: Account init js
*/
var swiper = new Swiper(".mySwiper", {
loop: 'true',
spaceBetween: 10,
autoplay: {
delay: 2500,
disableOnInteraction: false,
},
});
var removeBtns = document.getElementsByClassName("remove-item-btn");
Array.from(removeBtns).forEach(function (btn) {
btn.addEventListener("click", function (e) {
e.target.closest("tr").remove()
});
});