We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aefe94d commit 873ddf4Copy full SHA for 873ddf4
src/raven.js
@@ -667,7 +667,7 @@ Raven.prototype = {
667
}, true /* noUndo */); // don't track filled methods on XHR instances
668
}
669
});
670
- origSend.apply(this, arguments);
+ return origSend.apply(this, arguments);
671
};
672
673
@@ -676,7 +676,7 @@ Raven.prototype = {
676
if ($ && $.fn && $.fn.ready) {
677
fill($.fn, 'ready', function (orig) {
678
return function (fn) {
679
- orig.call(this, self.wrap(fn));
+ return orig.call(this, self.wrap(fn));
680
681
682
0 commit comments