Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit fce07f5

Browse files
committed
style($http): do not use angular global object to invoke isObject
Closes: #13204
1 parent c8768d1 commit fce07f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/http.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ function $HttpProvider() {
914914
*/
915915
function $http(requestConfig) {
916916

917-
if (!angular.isObject(requestConfig)) {
917+
if (!isObject(requestConfig)) {
918918
throw minErr('$http')('badreq', 'Http request configuration must be an object. Received: {0}', requestConfig);
919919
}
920920

0 commit comments

Comments
 (0)