I have a page that uses several directives:
<section class="start_page page--no-vcenter">
<u-search>
<u-search-form></u-search-form>
<u-news-form></u-news-form>
<u-search-pane></u-search-pane>
</u-search>
<u-news>
<u-news-pane></u-news-pane>
</u-news>
</u-search>
</section>
When i use a service that uses $location and sets the search() parameters inside of one of the directives all directives repaint.
return $location.search(obj);
How can avoid this repainting of the other directives?
Im using Angular 1.2.28.