forked from M3-Academy/m3-academy-template-checkout
finalização do slick
This commit is contained in:
parent
d1d8f759c6
commit
2c6cca3a62
@ -29,33 +29,8 @@ export default class Footer {
|
|||||||
this.cartTitulo = await waitElement("#cart-title");
|
this.cartTitulo = await waitElement("#cart-title");
|
||||||
}
|
}
|
||||||
|
|
||||||
// onUpdate() {
|
|
||||||
// //Função qeu fará a verificação se o carrinho está vazio para remover a prateleira de produtos:
|
|
||||||
// // vocês devem olhar a doc fornecida no Desafio para aprender a usar a MutationObserver
|
|
||||||
// // sempre que o carrinho estiver vazio o elemento chcekoutVazio fica display: none e isso pode ser usado como atributo para a MutationObserver
|
|
||||||
// let target = this.checkoutVazio;
|
|
||||||
// let config = { childList: true, attributes: true };
|
|
||||||
// let observer = new MutationObserver((mutations) => {
|
|
||||||
// mutations.forEach((mutation)=> {
|
|
||||||
// const statu = mutation.target.attributes.style.nodeValue;
|
|
||||||
// if(statu === 'display:none;'){
|
|
||||||
// this.cartTitulo.classList.remove('desativaSlick')
|
|
||||||
// }else if(statu === 'display:block;'){
|
|
||||||
// this.cartTitulo.classList.add('desativaSlick')
|
|
||||||
// }
|
|
||||||
|
|
||||||
// // if(mutation.target.style.display === "none"){
|
|
||||||
|
|
||||||
// // console.log("none")
|
|
||||||
// // }else{
|
|
||||||
// // console.log("block")
|
|
||||||
// // }
|
|
||||||
// // console.log(mutation.type);
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
|
|
||||||
// observer.observe(target, config);
|
|
||||||
// }
|
|
||||||
|
|
||||||
events() {
|
events() {
|
||||||
window.addEventListener("hashchange", () => {
|
window.addEventListener("hashchange", () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user