Sfoglia il codice sorgente

[Backend] Page commandes : bug removeClass 'active' dans le bloc Production

Lorsque l'on décochait un produit, la classe 'active' n'était pas supprimée.
prodstable
keun 8 anni fa
parent
commit
b5ab9dc3f8
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      backend/web/js/lechatdesnoisettes.js

+ 1
- 1
backend/web/js/lechatdesnoisettes.js Vedi File

@@ -349,7 +349,7 @@ function chat_index_commandes_liste_produits() {
$(this).parent().parent().addClass('active') ;
}
else {
$(this).parent().parent().removeClass('active(') ;
$(this).parent().parent().removeClass('active') ;
}
}) ;
}

Loading…
Annulla
Salva