angular.js/test/ng/directive
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
..
aSpec.js fix(a): workaround IE bug affecting mailto urls 2013-02-14 16:42:58 -08:00
booleanAttrsSpec.js feat(ngSrcset): add new ngSrcset directive 2013-05-14 21:29:21 +01:00
formSpec.js Fix failing test in IE 10 2013-03-14 22:03:37 -07:00
inputSpec.js feat(ngError): add error message compression and better error messages 2013-05-24 17:03:21 -07:00
ngBindSpec.js chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a module 2012-04-11 15:50:47 -07:00
ngClassSpec.js fix(ngClass): should remove classes when object is the same but property has changed 2013-04-16 13:15:49 +01:00
ngClickSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngCloakSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngControllerSpec.js feat(controller): support as instance syntax 2013-04-22 23:28:41 -07:00
ngCspSpec.js feat($parse): CSP compatibility 2012-04-27 23:04:24 -07:00
ngEventDirsSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngIfSpec.js chore(ngAnimate): CSS classes X-setup/X-start -> X/X-active 2013-05-08 16:03:31 -07:00
ngIncludeSpec.js chore(ngAnimate): CSS classes X-setup/X-start -> X/X-active 2013-05-08 16:03:31 -07:00
ngInitSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngKeySpec.js feat(directive): add ngKeypress directive for handling keypress event 2013-03-08 21:56:32 +01:00
ngNonBindableSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngPluralizeSpec.js fix(ngPluralize): handle the empty string as a valid override 2013-05-10 20:03:24 +01:00
ngRepeatSpec.js feat(ngError): add error message compression and better error messages 2013-05-24 17:03:21 -07:00
ngShowHideSpec.js chore(ngAnimate): CSS classes X-setup/X-start -> X/X-active 2013-05-08 16:03:31 -07:00
ngSrcsetSpec.js feat(ngSrcset): add new ngSrcset directive 2013-05-14 21:29:21 +01:00
ngSrcSpec.js fix(ngSrc): don't set src if value is empty string 2012-09-06 16:06:24 -07:00
ngStyleSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngSwitchSpec.js chore(ngAnimate): CSS classes X-setup/X-start -> X/X-active 2013-05-08 16:03:31 -07:00
scriptSpec.js fix(script): Incorrectly reading script text on ie 2012-04-20 11:29:34 -07:00
selectSpec.js feat(ngError): add error message compression and better error messages 2013-05-24 17:03:21 -07:00
styleSpec.js chore(module): move files around in preparation for more modules 2012-03-28 11:16:35 -07:00