Commit graph

12 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
c190e8cd67 remove stray console.logs 2015-02-08 18:02:43 -08:00
Nick Wientge
4799e2ef89 implement tap statusbar to scroll to top (fixes #8), misc transition fixes 2015-02-01 18:43:40 -08:00
Nick Wientge
5b517363bc potential fix for #27, #31, #44, #47 2015-01-31 13:07:19 -08:00
Nick Wientge
99214b4036 dont run route animations when changing tabs 2015-01-02 15:50:00 -08:00
Nick Wientge
39e03979b9 add some platform specific configuration 2014-12-27 17:24:39 -05:00
Nick Wientge
6c735dc3f7 initial navbar animiations 2014-12-23 21:23:12 -05:00
Nick Wientge
cc904abb59 oops, guess we need that after all 2014-12-22 14:23:49 -08:00
Nick Wientge
575f7fda20 refactor nav for latest version of ionic css framework 2014-12-22 12:12:45 -08:00
Nick Wientge
21a81477c7 fix nav direction bug 2014-12-21 11:34:41 -08:00
Nick Wientge
02957a564a basic nav animations working 2014-12-19 08:07:13 -08:00
Nick Wientge
3797771394 initial commit 2014-12-14 15:15:43 -08:00