My single page app displays images, which users can add to when they initially load the page. However, if they return to the page with a saved id in the url, I want the page to retrieve their previous model.
I've struggled to use routeProvider effectively without including ng-view somewhere on the page, which then affects the scopes inside the ng-view scope.
Essentially, I need the page to respond differently based on whether there is an id in the url or not, without changing the view and by retrieving the id from the route parameters.
I'm curious how others would approach this challenge, as my current attempts have been unsuccessful. Any assistance would be greatly appreciated.