I'm using Angular UI router in my app. This is what I'm doing.
- A main view contains a child view and a div container for "pagination"
- By default, initially, a first set of contents is loaded
- When a user clicks on "next page", next set of contents is loaded (with the URL also being changed to /content/2 (where 2 indicates the next page number)
All is working well, but each time the contents are loaded, it goes "blank" before it loads. So it seems like it's reloading the view (which is obvious).
What I would like to do is reload the content without having that "blank" page. How can I achieve this?