I have an html view which is full of angular directives. The problem is that each directive performs a lot of http requests. This is causing heavy load on the CPU usage. Our idea was to load one directive at a time i.e. as one directive initializes its controller (and therefore performs the calls), the next one starts.
EDIT: The directives are in different DOM elements i.e. I can't use priorities or preLinks, etc..
Do you think this is even possible? Thanks.