docs(guide/forms): code style changes for an example

Closes #5499
This commit is contained in:
mkolodny 2013-12-20 23:11:02 -05:00 committed by Igor Minar
parent 870232bd05
commit 98473835a2

View file

@ -33,10 +33,10 @@ In addition it provides an {@link api/ng.directive:ngModel.NgModelController API
<script>
function Controller($scope) {
$scope.master= {};
$scope.master = {};
$scope.update = function(user) {
$scope.master= angular.copy(user);
$scope.master = angular.copy(user);
};
$scope.reset = function() {