meteor-ionic/components/ionNavBar
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
..
ionNavBar.html initial navbar animiations 2014-12-23 21:23:12 -05:00
ionNavBar.js Correctly insert nodes at the end of a parent 2015-06-19 02:14:34 +02:00