fixed small issue in vanilla js filter idea
This commit is contained in:
parent
d0dac94911
commit
0e9506e326
@ -26,7 +26,7 @@ def getpublications():
|
||||
pubinfo = {
|
||||
"Title": row["Publication"],
|
||||
"Author": row["Author"],
|
||||
"Type": row["Type"],
|
||||
"Type": row["Type"].lower(),
|
||||
"Year": year,
|
||||
}
|
||||
publications[row["Id"]] = pubinfo
|
||||
|
@ -26,8 +26,8 @@ function update() {
|
||||
|
||||
filterSelection("all")
|
||||
function filterSelection(c) {
|
||||
var x, i;
|
||||
allpublications = document.getElementsByClassName("filter");
|
||||
var i;
|
||||
var allpublications = document.getElementsByClassName("filter");
|
||||
if (c == "all") {
|
||||
for (i = 0; i < allpublications.length; i++) {
|
||||
addClass(allpublications[i], "show");
|
||||
|
@ -1,6 +1,6 @@
|
||||
{% block menu %}
|
||||
<a href="/"><button>All books</button></a>
|
||||
<a href="/upload"><button>Upload</button></a>
|
||||
<button onclick="filterSelection('all')">All books</button>
|
||||
<button><a href="/upload">Upload</a></button>
|
||||
<div class="dropdown">
|
||||
<button class="dropbtn">Type</button>
|
||||
<div class="dropdown-content">
|
||||
|
Loading…
Reference in New Issue
Block a user