Skip to content

Commit

Permalink
Merge pull request #460 from getsentry/GH-458
Browse files Browse the repository at this point in the history
Fix missing return value in requestAnimationFrame wrapper (fixes #458)
  • Loading branch information
benvinegar committed Jan 9, 2016
2 parents 94fde0c + 418b29c commit 250b44b
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 @@ -620,7 +620,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 250b44b

Please sign in to comment.