Explorar el Código

Filtre par note rétabli pour vue tableau

François Drouhard hace 3 años
padre
commit
f7aef020c3
Se han modificado 1 ficheros con 9 adiciones y 3 borrados
  1. 9 3
      assets/js/filtre.js

+ 9 - 3
assets/js/filtre.js

@@ -15,9 +15,15 @@
             $(this).on("change", function(e) {
                 let value = $(this).val();
                 let target = $(this).data('path');
-                $(target + " article").filter(function () {
-                    $(this).toggle($("input.rating", this).val() >= value);
-                });
+                if ($(target + " article").length) {
+                    $(target + " article").filter(function () {
+                        $(this).toggle($("input.rating", this).val() >= value);
+                    });
+                } else {
+                    $(target + "  tr").filter(function () {
+                        $(this).toggle($("td input.rating", this).val() >= value);
+                    });
+                }
             });
         });
     }