diff options
| author | Igor Minar | 2013-08-27 15:57:01 -0700 | 
|---|---|---|
| committer | Igor Minar | 2013-08-27 15:57:01 -0700 | 
| commit | 0f56cfdd13b86c1d98a08a90715850b34bb46fde (patch) | |
| tree | 0a8e66a01f53280e2dc0117d51760f3873ee3a4e /src | |
| parent | 52ec83a0ed19ead8b4c944397f99b43ff2b010df (diff) | |
| download | angular.js-0f56cfdd13b86c1d98a08a90715850b34bb46fde.tar.bz2 | |
style($http): remove unused argument
Diffstat (limited to 'src')
| -rw-r--r-- | src/ng/http.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/ng/http.js b/src/ng/http.js index f76f1cff..ab4900de 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -96,7 +96,7 @@ function $HttpProvider() {          // strip json vulnerability protection prefix          data = data.replace(PROTECTION_PREFIX, '');          if (JSON_START.test(data) && JSON_END.test(data)) -          data = fromJson(data, true); +          data = fromJson(data);        }        return data;      }], | 
