From 088d6c05fd34d5e8d58970f83faf11c3383db356 Mon Sep 17 00:00:00 2001 From: Jesse Palmer Date: Sat, 29 Nov 2014 20:23:55 -0500 Subject: [PATCH 1/2] fixes grunt warning --- src/ng/http.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ng/http.js b/src/ng/http.js index 91e2ff2de081..feb87507fd86 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -610,12 +610,14 @@ function $HttpProvider() { * `{function(data, headersGetter)|Array.}` – * transform function or an array of such functions. The transform function takes the http * request body and headers and returns its transformed (typically serialized) version. - * See {@link #overriding-the-default-transformations-per-request Overriding the Default Transformations} + * See {@link api/ng/service/$http#overriding-the-default-transformations-per-request + * Overriding the Default Transformations} * - **transformResponse** – * `{function(data, headersGetter)|Array.}` – * transform function or an array of such functions. The transform function takes the http * response body and headers and returns its transformed (typically deserialized) version. - * See {@link #overriding-the-default-transformations-per-request Overriding the Default Transformations} + * See {@link api/ng/service/$http#overriding-the-default-transformations-per-request + * Overriding the Default Transformations} * - **cache** – `{boolean|Cache}` – If true, a default $http cache will be used to cache the * GET request, otherwise if a cache instance built with * {@link ng.$cacheFactory $cacheFactory}, this cache will be used for From f2ff70ebf7509f82efa7e33048a4eb202c7f1fee Mon Sep 17 00:00:00 2001 From: Jesse Palmer Date: Sat, 29 Nov 2014 21:49:13 -0500 Subject: [PATCH 2/2] updates links --- src/ng/http.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ng/http.js b/src/ng/http.js index feb87507fd86..d269ac83faec 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -610,13 +610,13 @@ function $HttpProvider() { * `{function(data, headersGetter)|Array.}` – * transform function or an array of such functions. The transform function takes the http * request body and headers and returns its transformed (typically serialized) version. - * See {@link api/ng/service/$http#overriding-the-default-transformations-per-request + * See {@link ng.$http#overriding-the-default-transformations-per-request * Overriding the Default Transformations} * - **transformResponse** – * `{function(data, headersGetter)|Array.}` – * transform function or an array of such functions. The transform function takes the http * response body and headers and returns its transformed (typically deserialized) version. - * See {@link api/ng/service/$http#overriding-the-default-transformations-per-request + * See {@link ng.$http#overriding-the-default-transformations-per-request * Overriding the Default Transformations} * - **cache** – `{boolean|Cache}` – If true, a default $http cache will be used to cache the * GET request, otherwise if a cache instance built with