diff options
| author | Igor Minar | 2012-01-10 19:16:33 -0800 |
|---|---|---|
| committer | Igor Minar | 2012-01-13 14:28:20 -0800 |
| commit | 939c8e8fac0487da12e56291d69c5199a8ed9a30 (patch) | |
| tree | f249b1cada0b289db0ad1dccf150f7b244c9c527 /src/service/httpBackend.js | |
| parent | d2ba4c5170f604f2610aaef1d205137e2848a791 (diff) | |
| download | angular.js-939c8e8fac0487da12e56291d69c5199a8ed9a30.tar.bz2 | |
docs($http, $httpBackend): docs docs docs
Diffstat (limited to 'src/service/httpBackend.js')
| -rw-r--r-- | src/service/httpBackend.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/service/httpBackend.js b/src/service/httpBackend.js index f18808c6..291d24bb 100644 --- a/src/service/httpBackend.js +++ b/src/service/httpBackend.js @@ -15,7 +15,10 @@ var XHR = window.XMLHttpRequest || function() { * * @description * HTTP backend used by the {@link angular.module.ng.$http service} that delegates to - * XMLHttpRequest object. + * XMLHttpRequest object or JSONP and deals with browser incompatibilities. + * + * You should never need to use this service directly, instead use the higher-level abstractions: + * {@link angular.module.ng.$http $http} or {@link angular.module.ng.$resource $resource}. * * During testing this implementation is swapped with {@link angular.module.ngMock.$httpBackend mock * $httpBackend} which can be trained with responses. |
