diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-11-26 14:02:02 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-11-26 14:02:02 +0100 |
commit | ba63b0157f04d2aa11ff4f2e9ba5bbe3271b9086 (patch) | |
tree | 09cdf4bff8361d0108a6bfe276c6f9bc3382a7bd /src/elements | |
parent | 059058fbac867a270ceef34970f5ac04f58ec913 (diff) | |
download | svg.js-ba63b0157f04d2aa11ff4f2e9ba5bbe3271b9086.tar.gz svg.js-ba63b0157f04d2aa11ff4f2e9ba5bbe3271b9086.zip |
Make color-animation work in all spaces (conversion bugs still there)
- Make sure _d is always defined
- Clean up object before init
- Check space in array
- Use passed space instead of space in object if available
Diffstat (limited to 'src/elements')
-rw-r--r-- | src/elements/Dom.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elements/Dom.js b/src/elements/Dom.js index 566008c..bccfbb8 100644 --- a/src/elements/Dom.js +++ b/src/elements/Dom.js @@ -6,7 +6,7 @@ import { makeInstance, register } from '../utils/adopter.js' -import { find } from '../modules/core/selector' +import { find } from '../modules/core/selector.js' import { globals } from '../utils/window.js' import { map } from '../utils/utils.js' import { ns } from '../modules/core/namespaces.js' |