We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7e9cbe commit e2b98e0Copy full SHA for e2b98e0
src/browser/transport.js
@@ -88,8 +88,9 @@ Transport.prototype._makeZoneRequest = function () {
88
89
if (currentZone && currentZone._name === 'angular') {
90
var rootZone = currentZone._parent;
91
+ var self = this;
92
rootZone.run(function () {
- this._makeRequest.apply(undefined, args);
93
+ self._makeRequest.apply(undefined, args);
94
});
95
} else {
96
this._makeRequest.apply(undefined, args);
0 commit comments