Jose David Rodriguez Velasco
Jose David Rodriguez Velasco
Attribute values for custom elements that are set in the template are always set as properties; in the case of global boolean attributes (ex: hidden), there's a difference when the...
## Details The main goal of this PR is to remove the `owner` property of the `vnode`. The proposed solution changes how the slotting mechanism works to provide the correct...
On todos_controller.js, specifically in the allAreDone computed property there is: ``` js return !!this.get('length') && this.everyProperty('isCompleted', true); ``` i think it may be: ``` js return this.get('length') && this.everyBy('isCompleted', true);...