mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-16 02:33:09 +00:00
style($http): remove unused argument
This commit is contained in:
parent
52ec83a0ed
commit
0f56cfdd13
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ function $HttpProvider() {
|
||||||
// strip json vulnerability protection prefix
|
// strip json vulnerability protection prefix
|
||||||
data = data.replace(PROTECTION_PREFIX, '');
|
data = data.replace(PROTECTION_PREFIX, '');
|
||||||
if (JSON_START.test(data) && JSON_END.test(data))
|
if (JSON_START.test(data) && JSON_END.test(data))
|
||||||
data = fromJson(data, true);
|
data = fromJson(data);
|
||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
}],
|
}],
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue