diff options
Diffstat (limited to 'docs/content/guide/dev_guide.services.$location.ngdoc')
| -rw-r--r-- | docs/content/guide/dev_guide.services.$location.ngdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/guide/dev_guide.services.$location.ngdoc b/docs/content/guide/dev_guide.services.$location.ngdoc index c5396b11..209b3abc 100644 --- a/docs/content/guide/dev_guide.services.$location.ngdoc +++ b/docs/content/guide/dev_guide.services.$location.ngdoc @@ -622,11 +622,11 @@ example: </pre> <pre> // js - controller -this.$watch('locationPath', function(path) { +$scope.$watch('locationPath', function(path) { $location.path(path); }); -this.$watch('$location.path()', function(path) { +$scope.$watch('$location.path()', function(path) { scope.locationPath = path; }); </pre> |
