first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-01-25 13:06:29 -05:00
commit 346346573f
1362 changed files with 343729 additions and 0 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()
});
});