public build

This commit is contained in:
CHIEFSOFT\ameye
2024-01-25 14:54:52 -05:00
parent 346346573f
commit 0062721065
1165 changed files with 239199 additions and 1 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()
});
});