Hi Kevin,

A insert before is easily mimicked with plain js.
something like this will do:

function inserBefore(elem,newElem) {
   elem.parentNode.insertBefore(elem,newElem);
}

You need to use the plain DOM elements, not the wrapped ones (elem[0] most 
off the time!)
Regards
Sander
​

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to