Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangarnier committed Jul 25, 2019
1 parent da7e13a commit 8b6721c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/anime.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ function handleVisibilityChange() {
if (document.hidden) {
activeInstances.forEach(function (ins) { return ins.pause(); });
pausedInstances = activeInstances.slice(0);
activeInstances = [];
anime.running = activeInstances = [];
} else {
pausedInstances.forEach(function (ins) { return ins.play(); });
}
Expand Down Expand Up @@ -1262,7 +1262,7 @@ function timeline(params) {
return tl;
}

anime.version = '3.0.1';
anime.version = '3.1.0';
anime.speed = 1;
anime.running = activeInstances;
anime.remove = removeTargets;
Expand Down
4 changes: 2 additions & 2 deletions lib/anime.js
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ function handleVisibilityChange() {
if (document.hidden) {
activeInstances.forEach(function (ins) { return ins.pause(); });
pausedInstances = activeInstances.slice(0);
activeInstances = [];
anime.running = activeInstances = [];
} else {
pausedInstances.forEach(function (ins) { return ins.play(); });
}
Expand Down Expand Up @@ -1264,7 +1264,7 @@ function timeline(params) {
return tl;
}

anime.version = '3.0.1';
anime.version = '3.1.0';
anime.speed = 1;
anime.running = activeInstances;
anime.remove = removeTargets;
Expand Down
2 changes: 1 addition & 1 deletion lib/anime.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@ function timeline(params = {}) {
return tl;
}

anime.version = '3.0.1';
anime.version = '3.1.0';
anime.speed = 1;
anime.running = activeInstances;
anime.remove = removeTargets;
Expand Down

0 comments on commit 8b6721c

Please sign in to comment.