Skip to content

Commit 418b29c

Browse files
committed
Fix missing return value in requestAnimationFrame wrapper (fixes #458)
1 parent 2fffd81 commit 418b29c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raven.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ Raven.prototype = {
617617
if (window.requestAnimationFrame) {
618618
fill(window, 'requestAnimationFrame', function (orig) {
619619
return function (cb) {
620-
orig(self.wrap(cb));
620+
return orig(self.wrap(cb));
621621
};
622622
});
623623
}

0 commit comments

Comments
 (0)