это значит, у вас старый код. $ E взят из mootools 1.1x и ссылается на document.getElement("selector");
, чтобы вернуть первый соответствующий элемент. Вы можете пойти:
$E = document.getElement;
в надежде, что это сделает его совместимым, или посмотрите на другой свертываемый скрипт, который более актуален. Скорее всего, это не единственное изменение API.
полный код был:
/*
Function: $E
Selects a single (i.e. the first found) Element based on the selector passed in and an optional filter element.
Returns as <Element>.
Arguments:
selector - string; the css selector to match
filter - optional; a DOM element to limit the scope of the selector match; defaults to document.
Example:
>$E('a', 'myElement') //find the first anchor tag inside the DOM element with id 'myElement'
Returns:
a DOM element - the first element that matches the selector
*/
function $E(selector, filter){
return ($(filter) || document).getElement(selector);
};