Procházet zdrojové kódy

[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.
master
keun před 8 roky
rodič
revize
b5ab9dc3f8
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      backend/web/js/lechatdesnoisettes.js

+ 1
- 1
backend/web/js/lechatdesnoisettes.js Zobrazit soubor

@@ -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') ;
}
}) ;
}

Načítá se…
Zrušit
Uložit