I'm trying to integrate some plain JavaScript library with AngularJS, in which I need to manually $compile
some DOM elements. I'm doing the compilation like this:
$compile(e.srcElement)($scope);
e.srcElement
is the DOM element I want to $compile
.
I wonder, if there is any established way to check if a given DOM element has been compiled.
I know it's possible if I attach some data attributes to the DOM during compiling, and try to retrieve that later. What I want to know is if there is any existing method in AngularJS.
Thank you!
Within a directives compile function, parents have already been compiled. Children have not yet. Siblings have been compiled if their priority number is greater than the current directive's priority: