| Age | Commit message (Collapse) | Author | 
 | 
This allows location change cancelation
 | 
 | 
templates
BREAKING CHANGE: template in $route definition is now templateUrl
To migrate just rename `template` to `templateUrl`.
 | 
 | 
BREAKING CHANGE
rename $beforeRouteChange to $routeChangeStart
rename $afterRouteChange to $routeChangeSuccess
 | 
 | 
Resolve all promises on route before we fire $afterRouteChange which then renders the ngView.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
Previously one had to write:
$routeProvider.when('/foo', {...});
$routeProvider.when('/bar', {...});
$routeProvider.otherwise({...});
After this change it's just:
$routeProvider.
    when('/foo', {...}).
    when('/bar', {...}).
    otherwise({...});
Breaks #when which used to return the route definition object but now
returns self. Returning the route definition object is not very useful
so its likely that nobody ever used it.
 | 
 | 
 |