Comparing version 0.3.11 to 0.3.12
{ | ||
"name": "tina", | ||
"version": "0.3.11", | ||
"version": "0.3.12", | ||
"description": "Tweening and INterpolations for Animation", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -43,3 +43,3 @@ | ||
function updateE(object, t) { | ||
t = this.easing(t, this.easingParams); | ||
t = this.easing(t, this.easingParam); | ||
var p = this.prop; | ||
@@ -55,3 +55,3 @@ var now = this.from[p] * (1 - t) + this.to[p] * t; | ||
var q = this.props; | ||
t = this.easing(t, this.easingParams); | ||
t = this.easing(t, this.easingParam); | ||
for (var i = 0; i < q.length; i += 1) { | ||
@@ -69,3 +69,3 @@ var p = q[i]; | ||
var p = this.prop; | ||
var now = this.interps[p](this.easing(t, this.easingParams), this.from[p], this.to[p], this.interpParams[p]); | ||
var now = this.interps[p](this.easing(t, this.easingParam), this.from[p], this.to[p], this.interpParams[p]); | ||
object[p] = object[p] + (now - this.prev); | ||
@@ -80,3 +80,3 @@ this.prev = now; | ||
var q = this.props; | ||
t = this.easing(t, this.easingParams); | ||
t = this.easing(t, this.easingParam); | ||
for (var i = 0; i < q.length; i += 1) { | ||
@@ -83,0 +83,0 @@ var p = q[i]; |
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
771065