summaryrefslogtreecommitdiff
path: root/js/common.js
diff options
context:
space:
mode:
authorsupahgreg <supahgreg@users.noreply.github.com>2025-10-14 23:18:13 +0000
committersupahgreg <supahgreg@users.noreply.github.com>2025-10-14 23:18:13 +0000
commit6bd52b28c201c2afb43397c1413000d47563da0b (patch)
tree9a992f39573f34a0901e96e52f53a58446d2f60b /js/common.js
parent6d3619724735cad09bcb24110403d21479d1fd4d (diff)
Remove 'App.findAll()', which was essentially an alias of 'document.querySelectorAll()'.
Diffstat (limited to 'js/common.js')
-rwxr-xr-xjs/common.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/js/common.js b/js/common.js
index b981f0141..2d5e63f44 100755
--- a/js/common.js
+++ b/js/common.js
@@ -22,12 +22,6 @@ function $(id) {
return document.getElementById(id);
}
-/* exported $$ */
-function $$(query) {
- console.warn("FIXME: please use App.findAll() or document.querySelectorAll() instead of $$():", query);
- return document.querySelectorAll(query);
-}
-
// polyfill for safari https://raw.githubusercontent.com/pladaria/requestidlecallback-polyfill/master/index.js
window.requestIdleCallback =
window.requestIdleCallback ||