-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
34 lines (28 loc) · 1.04 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var carrito;
var usu = "";
var listaUsuarios = [];
window.onload = () => {
emailjs.init("9FGoHE7v3zGxA7-gg");
let cart = JSON.parse(localStorage.getItem('carrito'));
if (cart != null) {
carrito = new CarritoCompra(cart);
} else {
carrito = new CarritoCompra();
}
let usuarios = JSON.parse(localStorage.getItem('usuarios'));
if (usuarios != null) {
listaUsuarios = usuarios;
} else {
listaUsuarios = [];
}
//Click events para las categorías
$(".art-all").click(() => { requestAllProducts(); })
$(".art-mujer").click(() => { requestAllProducts("/category/women's clothing"); })
$(".art-hombre").click(() => { requestAllProducts("/category/men's clothing"); })
$(".art-jewele").click(() => { requestAllProducts("/category/jewelery"); })
//Click event del carrito
$("#carro").click(() => { showCart(); });
//Click events de registro e inicio de sesión
$("#registrarse").click(() => { showRegister(); });
$("#iniciarSesion").click(() => { showLogin(); });
}