angular.js/docs/src
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
..
templates refactor($route): pull $route and friends into angular-route.js 2013-06-06 17:07:12 -07:00
appCache.js feat(docs): use html5 history api for all routing in the docs app 2011-09-26 23:51:53 +02:00
dom.js fix(ngdocs): fix gen_docs.sh 2013-05-20 14:39:02 -07:00
example.js docs: add animations into docs and directive examples 2013-04-03 17:40:15 -07:00
gen-docs.js chore(docs): use done() in gen-docs.js 2013-05-08 07:57:34 -07:00
ignore.words fix(ngdocs): fix gen_docs.sh 2013-05-20 14:39:02 -07:00
ngdoc.js feat(ngdocs): provide support for inline variable hinting 2013-05-30 21:42:41 -07:00
reader.js chore(Grunt): switch from Rake to Grunt 2013-03-05 23:00:33 -08:00
SiteMap.js fix(docs): correctly generate sitemap 2012-07-02 08:21:19 -07:00
writer.js chore(Grunt): switch from Rake to Grunt 2013-03-05 23:00:33 -08:00