Skip to content

Commit

Permalink
Fix missing return value in requestAnimationFrame wrapper (fixes #458)
Browse files Browse the repository at this point in the history
  • Loading branch information
benvinegar committed Jan 9, 2016
1 parent 2e93543 commit d342739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/raven.js
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ Raven.prototype = {
if (window.requestAnimationFrame) {
fill(window, 'requestAnimationFrame', function (orig) {
return function (cb) {
orig(self.wrap(cb));
return orig(self.wrap(cb));
};
});
}
Expand Down

0 comments on commit d342739

Please sign in to comment.