aboutsummaryrefslogtreecommitdiffstats
path: root/src/animation/Runner.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2023-04-05 13:42:41 +0200
committerGitHub <noreply@github.com>2023-04-05 13:42:41 +0200
commit770ca58d58bcb48a52367e9a340ab06c0053f1d5 (patch)
tree6d60e71adf69fdb7b59534d4a2d4137d5d124a88 /src/animation/Runner.js
parentd8ce1aec598e36457c0bb7e923cf5642420ceb86 (diff)
parentd3630aa69816e78a274e5b18dd1e027aa8a7e6ec (diff)
downloadsvg.js-770ca58d58bcb48a52367e9a340ab06c0053f1d5.tar.gz
svg.js-770ca58d58bcb48a52367e9a340ab06c0053f1d5.zip
Merge pull request #1294 from timgates42/bugfix_typos
docs: Fix a few typos
Diffstat (limited to 'src/animation/Runner.js')
-rw-r--r--src/animation/Runner.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/animation/Runner.js b/src/animation/Runner.js
index cf18201..5639f84 100644
--- a/src/animation/Runner.js
+++ b/src/animation/Runner.js
@@ -360,7 +360,7 @@ export default class Runner extends EventTarget {
this.fire('step', this)
}
// correct the done flag here
- // declaritive animations itself know when they converged
+ // declarative animations itself know when they converged
this.done = this.done || (converged && declarative)
if (justFinished) {
this.fire('finished', this)
@@ -619,7 +619,7 @@ registerMethods({
// this function searches for all runners on the element and deletes the ones
// which run before the current one. This is because absolute transformations
- // overwfrite anything anyway so there is no need to waste time computing
+ // overwrite anything anyway so there is no need to waste time computing
// other runners
_clearTransformRunnersBefore (currentRunner) {
this._transformationRunners.clearBefore(currentRunner.id)
@@ -769,7 +769,7 @@ extend(Runner, {
? transforms.affine
: (affine != null ? affine : !isMatrix)
- // Create a morepher and set its type
+ // Create a morpher and set its type
const morpher = new Morphable(this._stepper)
.type(affine ? TransformBag : Matrix)