Skip to content

Commit

Permalink
Fix requestAnimationFrame case for SSR
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaughn committed Sep 18, 2017
1 parent 003400d commit 9c780c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/utils/animationFrame.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if (typeof window !== "undefined") {
} else if (typeof self !== "undefined") {
win = self;
} else {
win = this;
win = {};
}

// requestAnimationFrame() shim by Paul Irish
Expand Down

0 comments on commit 9c780c9

Please sign in to comment.