(kind)
| 14 | window.multiFilterCombine = { designer: "OR", license: "OR", parentModel: "OR", tags: "AND", filaments: "AND" }; |
| 15 | } else if (!window.multiFilterCombine.filaments) { |
| 16 | window.multiFilterCombine.filaments = "AND"; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | function getCombine(kind) { |
| 21 | initState(); |
| 22 | const el = document.querySelector(`input[name="${kind}-combine"]:checked`); |
| 23 | return el && el.value === "AND" ? "AND" : "OR"; |
no test coverage detected