Skip to content

Commit

Permalink
Goofed up the getter on animationStartTime if the browser supported i…
Browse files Browse the repository at this point in the history
…t natively.
  • Loading branch information
Brandon Jones committed Mar 20, 2012
1 parent 7d95c42 commit f2e19ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game-shim.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @fileoverview game-shim - Shims to normalize gaming-related APIs to their respective specs
* @author Brandon Jones
* @version 0.3
* @version 0.4
*/

/*
Expand Down Expand Up @@ -84,7 +84,7 @@
getter = (function() {
for(x = 0; x < vendors.length; ++x) {
if(window[vendors[x] + "AnimationStartTime"]) {
return window[vendors[x] + "AnimationStartTime"];
return function() { return window[vendors[x] + "AnimationStartTime"]; };
}
}

Expand Down

0 comments on commit f2e19ed

Please sign in to comment.