I have web app, and in this web app I have a lot generated input components. Generated components depends on user input parameter and dynamically added to web page.
One of this parameters is location picker. This is not necessary parameter so it also generated depends on user input. For location picker I use http://jsfiddle.net/mrajcok/pEq6X/ angular directive.
And my problem is when user add input, I add generated code that contains definition of ng-app, but this component does not works, because I need somehow to tell angular to parse html again. Is there are approach for that?
<div ng-app="Otd" ng-controller="SearchForm">
<google-places location=location></google-places>
</div>