소스 검색

[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 8 년 전
부모
커밋
b5ab9dc3f8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      backend/web/js/lechatdesnoisettes.js

+ 1
- 1
backend/web/js/lechatdesnoisettes.js 파일 보기

@@ -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…
취소
저장