add $/423 shims

This commit is contained in:
Andrew Dolgov 2021-02-18 22:26:00 +03:00
parent c088e9d9d8
commit b6c3dde1cc
1 changed files with 11 additions and 0 deletions

View File

@ -3,6 +3,17 @@
/* global dijit, __, App, Ajax */
/* eslint-disable no-new */
function $(id) {
console.warn("FIXME: please use App.getById() or document.getElementById() instead of $():", id);
return document.getElementById(id);
}
function $$(query) {
console.warn("FIXME: please use App.findAll() or document.querySelectorAll() instead of $():", query);
return document.querySelectorAll(query);
}
Element.prototype.hasClassName = function(className) {
return dojo.hasClass(this, className);
};