From 6bd52b28c201c2afb43397c1413000d47563da0b Mon Sep 17 00:00:00 2001 From: supahgreg Date: Tue, 14 Oct 2025 23:18:13 +0000 Subject: Remove 'App.findAll()', which was essentially an alias of 'document.querySelectorAll()'. --- js/common.js | 6 ------ 1 file changed, 6 deletions(-) (limited to 'js/common.js') 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 || -- cgit v1.2.3-54-g00ecf