clean up and beginning to implement catfilter

This commit is contained in:
Jonas Heinrich 2020-06-19 16:15:20 +02:00
parent 3cbde1b9f2
commit 52cdae478b
2 changed files with 32 additions and 0 deletions

6
kit/js/custom.js Normal file
View file

@ -0,0 +1,6 @@
document.addEventListener("DOMContentLoaded", function() {
$("ul.catFilter li.available").on("click", function(e){
e.preventDefault();
console.log("test");
});
});