fix(site): lightbox reference error
This commit is contained in:
parent
a3f9d0b743
commit
7300250bff
|
@ -204,7 +204,6 @@ if (isset($_GET['random'])) {
|
||||||
if (window.location.hash) {
|
if (window.location.hash) {
|
||||||
openImageFromHash();
|
openImageFromHash();
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
// if hash is changed and lightbox is closed, open image
|
// if hash is changed and lightbox is closed, open image
|
||||||
window.addEventListener("hashchange", function() {
|
window.addEventListener("hashchange", function() {
|
||||||
|
@ -212,6 +211,7 @@ if (isset($_GET['random'])) {
|
||||||
openImageFromHash();
|
openImageFromHash();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
// if imgproxy version fails to load, fallback to full-size image
|
// if imgproxy version fails to load, fallback to full-size image
|
||||||
document.querySelectorAll(".gallery img").forEach(function(img) {
|
document.querySelectorAll(".gallery img").forEach(function(img) {
|
||||||
|
|
Loading…
Reference in New Issue