angular.js/docs/content/cookbook
Igor Minar 5599b55b04 refactor($route): pull $route and friends into angular-route.js
$route, $routeParams and ngView have been pulled from core angular.js
to angular-route.js/ngRoute module.

This is was done to in order keep the core focused on most commonly
used functionality and allow community routers to be freely used
instead of $route service.

There is no need to panic, angular-route will keep on being supported
by the angular team.

Note: I'm intentionally not fixing tutorial links. Tutorial will need
bigger changes and those should be done when we update tutorial to
1.2.

BREAKING CHANGE: applications that use $route will now need to load
angular-route.js file and define dependency on ngRoute module.

Before:

```
...
<script src="angular.js"></script>
...
var myApp = angular.module('myApp', ['someOtherModule']);
...
```

After:

```
...
<script src="angular.js"></script>
<script src="angular-route.js"></script>
...
var myApp = angular.module('myApp', ['ngRoute', 'someOtherModule']);
...
```

Closes #2804
2013-06-06 17:07:12 -07:00
..
advancedform.ngdoc feat($compile): do not interpolate boolean attributes, rather evaluate them 2012-03-26 21:14:09 -07:00
buzz.ngdoc docs(cookbook): change prototype methods to scope methods in Buzz 2013-01-18 00:49:41 -05:00
deeplinking.ngdoc refactor($route): pull $route and friends into angular-route.js 2013-06-06 17:07:12 -07:00
form.ngdoc docs(guide): minor grammar fixes 2013-01-17 19:10:46 -05:00
helloworld.ngdoc docs(guide): minor grammar fixes 2013-01-17 19:10:46 -05:00
index.ngdoc docs(guide): minor grammar fixes 2013-01-17 19:10:46 -05:00
mvc.ngdoc fix(ngRepeat): prevent initial duplicates 2013-04-11 23:06:07 -07:00