angular.js/test/ng
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
..
directive refactor($route): pull $route and friends into angular-route.js 2013-06-06 17:07:12 -07:00
filter fix(date): correctly format dates with more than 3 sub-second digits 2013-05-07 22:59:46 +01:00
anchorScrollSpec.js fix($sniffer): report history false on Android < 4 2012-05-14 15:12:51 -07:00
animationSpec.js feat(ngAnimate): add support for animation 2013-04-02 14:05:06 -07:00
animatorSpec.js fix(jqLite): Added optional name arg in removeData 2013-05-30 23:43:27 -07:00
browserSpecs.js fix($browser): should use first value for a cookie. 2013-05-11 09:28:14 -07:00
cacheFactorySpec.js feat(ngError): add error message compression and better error messages 2013-05-24 17:03:21 -07:00
compileSpec.js feat($compile): support multi-element directive 2013-05-28 22:28:32 -07:00
controllerSpec.js feat(ngError): add error message compression and better error messages 2013-05-24 17:03:21 -07:00
documentSpec.js chore(module): move files around in preparation for more modules 2012-03-28 11:16:35 -07:00
exceptionHandlerSpec.js chore(module): move files around in preparation for more modules 2012-03-28 11:16:35 -07:00
httpBackendSpec.js feat($http): add support for aborting via timeout promises 2013-05-20 14:15:04 -07:00
httpSpec.js feat($http): add support for aborting via timeout promises 2013-05-20 14:15:04 -07:00
interpolateSpec.js feat(ngError): add error message compression and better error messages 2013-05-24 17:03:21 -07:00
localeSpec.js chore(module): move files around in preparation for more modules 2012-03-28 11:16:35 -07:00
locationSpec.js refactor($route): pull $route and friends into angular-route.js 2013-06-06 17:07:12 -07:00
logSpec.js feat($log): add $log.debug() 2013-01-17 16:47:39 -08:00
parseSpec.js feat(ngError): add error message compression and better error messages 2013-05-24 17:03:21 -07:00
qSpec.js feat($q): add $q.always() method 2013-04-24 20:56:18 +01:00
rootElementSpec.js feat($rootElement): added application root element 2012-06-02 14:50:58 -07:00
rootScopeSpec.js feat(ngError): add error message compression and better error messages 2013-05-24 17:03:21 -07:00
snifferSpec.js feat($sniffer): Add support for supportsAnimations flag for detecting CSS Animations browser support 2013-05-08 15:40:37 -07:00
timeoutSpec.js fix($timeout): allow calling $timeout.cancel() with undefined 2012-06-04 17:43:14 -07:00
windowSpec.js chore(module): move files around in preparation for more modules 2012-03-28 11:16:35 -07:00