Comparing version 0.6.0 to 1.0.0
# History | ||
## 1.0.0 | ||
* fix compilation error regarding window being defined | ||
* start using semver correctly | ||
## 0.6.0 | ||
@@ -4,0 +9,0 @@ |
@@ -18,7 +18,7 @@ var Vec2d = require('vec2d').Vec2d; | ||
var fpsOneFrameWeight = 1.0 - fpsSmoothness; | ||
var requestAnimationFrame = window.requestAnimationFrame || | ||
window.webkitRequestAnimationFrame || | ||
window.mozRequestAnimationFrame || | ||
window.oRequestAnimationFrame || | ||
window.msRequestAnimationFrame || | ||
var requestAnimationFrame = global.requestAnimationFrame || | ||
global.webkitRequestAnimationFrame || | ||
global.mozRequestAnimationFrame || | ||
global.oRequestAnimationFrame || | ||
global.msRequestAnimationFrame || | ||
fallbackRequestAnimationFrame; | ||
@@ -204,3 +204,3 @@ | ||
function fallbackRequestAnimationFrame(cb){ | ||
window.setTimeout(cb, targetSpf * 1000); | ||
setTimeout(cb, targetSpf * 1000); | ||
} | ||
@@ -207,0 +207,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"author": "Andrew Kelley <superjoe30@gmail.com>", | ||
"version": "0.6.0", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
@@ -8,0 +8,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
57507
1