Commit graph

8 commits

Author SHA1 Message Date
Lalo Martins
04fcd742e9 Correctly insert nodes at the end of a parent
In _uihooks, sometimes the `next` argument is null, which means the new dquote> node should be appended to the parent. However, using jQuery
(`$(node).insertBefore(next)`), that's not possible, since jQuery
has no way of knowing what parent you mean.

Instead, this commit uses a standard DOM method,
`parent.insertBefore(node, next)`, which does the right thing --
it's what Blaze uses internally when no `insertElement` hook is
defined.
2015-06-19 02:14:34 +02:00
Nick Wientge
5b517363bc potential fix for #27, #31, #44, #47 2015-01-31 13:07:19 -08:00
Nick Wientge
6985ddbb7f fix title align issues on android 2015-01-17 17:12:56 -08:00
Nick Wientge
99214b4036 dont run route animations when changing tabs 2015-01-02 15:50:00 -08:00
Nick Wientge
4292fcdb12 add title positioning to headerbar and navbar 2014-12-28 22:32:06 -05:00
Nick Wientge
39e03979b9 add some platform specific configuration 2014-12-27 17:24:39 -05:00
Nick Wientge
de35cdf056 more navigation functionality, added back button component 2014-12-25 19:39:30 -05:00
Nick Wientge
6c735dc3f7 initial navbar animiations 2014-12-23 21:23:12 -05:00