As part of my exploration of AngularJS I'm using the
Angular-Seed project. It works great. I then added a text box and button to View 1 to check out AJAX in action. That worked great as well. I wrote controller function to post the value I saved in my model. The one thing I noticed is that whatever value I enter in my text box in View 1 is lost when I switch to View 2 and return back to View 1. When AngularJS routes to another page does it reset $scope? I expected my model to retain the value even though I switched views. If that's not the case, some guidance on how I should save my model values, so I can keep them even if the user is temporarily routed to another partial view, would be most appreciated. Thanks.