-
Help! Can someone tell me why the elements in this collection are no longer displaying? https://cdigitaljaveriana.github.io/museogif/browse.html |
Beta Was this translation helpful? Give feedback.
Answered by
evanwill
May 28, 2025
Replies: 1 comment 1 reply
-
@cgrillo98 the Browse javascript was broken by a change you made to "_layouts/browse.html", this commit, Change this line: The javascript is looking for that id "browseItems" to add the item cards, so with out it the Browse page breaks! |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
cgrillo98
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@cgrillo98 the Browse javascript was broken by a change you made to "_layouts/browse.html", this commit,
cdigitaljaveriana/museogif@804a284
Change this line:
<div class="row" id="browse"></div>
back to:
<div class="row" id="browseItems"></div>
The javascript is looking for that id "browseItems" to add the item cards, so with out it the Browse page breaks!