What is the solution to this issue? The component of the assessment will not be Angular focused.
function Menu(container) {
this.container = container;
this.elements = this.getItems();
}
Menu.prototype.getItems = function() {
var itemsArray = this.container.$('> li');
...
};
Appreciate all your help!