summaryrefslogtreecommitdiff
path: root/js/common.js
diff options
context:
space:
mode:
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 ||