1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 10:45:56 +00:00

cleanup some unused code, fix App.byId() invoked by wrong name

This commit is contained in:
Andrew Dolgov
2021-02-19 06:58:50 +03:00
parent dcfea9baac
commit 00310d2d23
6 changed files with 5 additions and 25 deletions

View File

@@ -4,7 +4,7 @@
/* eslint-disable no-new */
function $(id) {
console.warn("FIXME: please use App.getById() or document.getElementById() instead of $():", id);
console.warn("FIXME: please use App.byId() or document.getElementById() instead of $():", id);
return document.getElementById(id);
}