« get me outta code hell

so far so good - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/lazy-show.js
diff options
context:
space:
mode:
author(quasar) nebula <towerofnix@gmail.com>2020-10-28 18:01:59 -0300
committer(quasar) nebula <towerofnix@gmail.com>2020-10-28 18:01:59 -0300
commit33d67ffc4f9d9d0d7ad672997ffc5261770d988b (patch)
treebcb53a80baf13289dcd4c7b9bf9d490e13306171 /lazy-show.js
parent25798012d6a0ab3ba0c439f372bbedc5943ac47e (diff)
so far so good
Diffstat (limited to 'lazy-show.js')
-rw-r--r--lazy-show.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/lazy-show.js b/lazy-show.js
deleted file mode 100644
index c6a1bf25..00000000
--- a/lazy-show.js
+++ /dev/null
@@ -1,16 +0,0 @@
-// Kinda like lazy-fallback.js in that this should work on any 8rowser, period.
-// Shows the lazy loading images iff JS is enabled (so that you don't have a
-// duplicate image if JS is disabled).
-
-lazyLoadingShowHiddenImages();
-
-function lazyLoadingShowHiddenImages() {
-    // This is a live HTMLCollection! We can't iter8te over it normally 'cuz
-    // we'd 8e mutating its value just 8y interacting with the DOM elements it
-    // contains. A while loop works just fine, even though you'd think reading
-    // over this code that this would 8e an infinitely hanging loop. It isn't!
-    var elements = document.getElementsByClassName('js-hide');
-    while (elements.length) {
-        elements[0].classList.remove('js-hide');
-    }
-}