Comparing version 16.3.0 to 16.3.1
@@ -33,3 +33,3 @@ { | ||
}, | ||
"version": "16.3.0" | ||
"version": "16.3.1" | ||
} |
@@ -61,9 +61,9 @@ # tween.js | ||
```bash | ||
bower install tweenjs | ||
bower install tweenjs --save | ||
``` | ||
or install an specific tag. They are git tags, and you can run `git tag` for a list: | ||
or install an specific tag. They are git tags, and you can run `git tag` in the command line for a list if you have cloned the repository locally, or you can also check out the list in the [tween.js tags page](https://github.com/tweenjs/tween.js/tags). For example, to install `v16.3.0`: | ||
```bash | ||
bower install tweenjs#r14 | ||
bower install tweenjs#v16.3.0 | ||
``` | ||
@@ -74,3 +74,3 @@ | ||
```html | ||
<script src="bower_components/tween.js/src/Tween.js"></script> | ||
<script src="bower_components/tweenjs/src/Tween.js"></script> | ||
``` | ||
@@ -77,0 +77,0 @@ |
@@ -364,3 +364,5 @@ /** | ||
for (var i = 0, numChainedTweens = _chainedTweens.length; i < numChainedTweens; i++) { | ||
_chainedTweens[i].start(time); | ||
// Make the chained tweens start exactly at the time they should, | ||
// even if the `update()` method was called way past the duration of the tween | ||
_chainedTweens[i].start(_startTime + _duration); | ||
} | ||
@@ -367,0 +369,0 @@ |
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
23056
539