When creating a component that inherits Components.Input, the new component won't create the renderer properly. Thats because if a child doesnt have init method, the new child is not able to call its grandfather init method
To solve it, add something like
if (!hasOwn.call(Child.prototype, 'init') && Child.parent) {
Child.parent.init.apply(this, arguments);
}
When creating a component that inherits Components.Input, the new component won't create the renderer properly. Thats because if a child doesnt have init method, the new child is not able to call its grandfather init method To solve it, add something like
into Cuore.Class.js, into Child function