I have a usual angular model in $rootScope. Data is displayed in angular Views using {{$rootScope.client.name}}
There is a form where the user can change his name. When it's updating the form with the new name, the existing one changes in the template (which is normal because of the binding).
How can I stop this binding and make the change available on the next refresh or manually after save? Thank you!