Skip to content

Commit 9701cb4

Browse files
author
So8res
committed
updated builds
1 parent 807e785 commit 9701cb4

File tree

6 files changed

+66
-57
lines changed

6 files changed

+66
-57
lines changed

build/MathBox-bundle.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42989,6 +42989,9 @@ MathBox.Animator.Animation.prototype = {
4298942989
case 'out':
4299042990
rolloff = fraction * fraction;
4299142991
break;
42992+
case 'linear':
42993+
roloff = fraction;
42994+
break;
4299242995
default:
4299342996
rolloff = .5-.5*Math.cos(fraction * π);
4299442997
break;

build/MathBox-bundle.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/MathBox-core.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,9 @@ MathBox.Animator.Animation.prototype = {
392392
case 'out':
393393
rolloff = fraction * fraction;
394394
break;
395+
case 'linear':
396+
roloff = fraction;
397+
break;
395398
default:
396399
rolloff = .5-.5*Math.cos(fraction * π);
397400
break;

build/MathBox-core.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/MathBox.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3366,6 +3366,9 @@ MathBox.Animator.Animation.prototype = {
33663366
case 'out':
33673367
rolloff = fraction * fraction;
33683368
break;
3369+
case 'linear':
3370+
roloff = fraction;
3371+
break;
33693372
default:
33703373
rolloff = .5-.5*Math.cos(fraction * π);
33713374
break;

0 commit comments

Comments
 (0)