$.view("#container", true) returns the first inner view under #container, of any type.
view.get(true, "foo") returns the first inner/child view of type "foo".
$.view("#container", true, "foo") returns the first inner view under #container, of type "foo".
This is consistent with current APIs which are:
$.view("#container", true)
returns the first inner view under#container
, of any type.view.get(true, "foo")
returns the first inner/child view of type "foo".$.view("#container", true, "foo")
returns the first inner view under#container
, of type "foo".(See discussion: https://github.com/BorisMoore/jsviews/issues/100#issuecomment-144892503)