You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added .findComponent() and .findComponents() which will search the entire component tree by name. These methods are similar to .getComponent() and .getComponents() which only look for components on the local view.
Fixed .findByRef(). Instead of searching parents views, this will search children views for the reference.
Added linting with jshint.
Added local partial syntax. Sometimes you need to get a partial found on this view, instead of looking up the parent tree by the name. Use this syntax in the templates: {{$ my-partial }}.
Calling .getComponents() without arguments will return an array with all direct children components.