aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/deferred.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/deferred.js b/src/deferred.js
index 91c55a64e..0ea1e7f1f 100644
--- a/src/deferred.js
+++ b/src/deferred.js
@@ -354,7 +354,10 @@ jQuery.extend( {
master.reject
);
} else {
- updateFunc( i )( resolveValues[ i ] );
+
+ // Support: Android 4.0 only
+ // Strict mode functions invoked without .call/.apply get global-object context
+ updateFunc( i ).call( undefined, resolveValues[ i ] );
}
}