Browse Source

Filtre par note rétabli pour vue tableau

François Drouhard 3 years ago
parent
commit
f7aef020c3
1 changed files with 9 additions and 3 deletions
  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);
+                    });
+                }
             });
         });
     }