aboutsummaryrefslogtreecommitdiffstats
path: root/src/service/route.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/route.js')
-rw-r--r--src/service/route.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/service/route.js b/src/service/route.js
index ddc3df49..3918c251 100644
--- a/src/service/route.js
+++ b/src/service/route.js
@@ -62,7 +62,7 @@
</doc:scenario>
</doc:example>
*/
-angularServiceInject('$route', function($location, $routeParams) {
+angularServiceInject('$route', function($rootScope, $location, $routeParams) {
/**
* @ngdoc event
* @name angular.service.$route#$beforeRouteChange
@@ -112,8 +112,7 @@ angularServiceInject('$route', function($location, $routeParams) {
var routes = {},
matcher = switchRouteMatcher,
- parentScope = this,
- rootScope = this,
+ parentScope = $rootScope,
dirty = 0,
forceReload = false,
$route = {
@@ -220,7 +219,7 @@ angularServiceInject('$route', function($location, $routeParams) {
}
};
- this.$watch(function() { return dirty + $location.url(); }, updateRoute);
+ $rootScope.$watch(function() { return dirty + $location.url(); }, updateRoute);
return $route;
@@ -262,7 +261,7 @@ angularServiceInject('$route', function($location, $routeParams) {
last.scope && last.scope.$emit('$routeUpdate');
} else {
forceReload = false;
- rootScope.$broadcast('$beforeRouteChange', next, last);
+ $rootScope.$broadcast('$beforeRouteChange', next, last);
last && last.scope && last.scope.$destroy();
$route.current = next;
if (next) {
@@ -280,7 +279,7 @@ angularServiceInject('$route', function($location, $routeParams) {
next.scope = parentScope.$new(Controller);
}
}
- rootScope.$broadcast('$afterRouteChange', next, last);
+ $rootScope.$broadcast('$afterRouteChange', next, last);
}
}
@@ -323,4 +322,4 @@ angularServiceInject('$route', function($location, $routeParams) {
}
-}, ['$location', '$routeParams']);
+}, ['$rootScope', '$location', '$routeParams']);