diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2019-01-14 13:10:38 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2019-01-14 13:10:38 +0100 |
commit | 92b48d2da14a4870c348c50443a2e22d015c3828 (patch) | |
tree | 0972ed3174ee8ec05bd61e479d347b9bec2f1d56 /src/elements/Dom.js | |
parent | aec779cb019b5ad1c2ea709d9bf8e93d3d1e0c87 (diff) | |
download | svg.js-92b48d2da14a4870c348c50443a2e22d015c3828.tar.gz svg.js-92b48d2da14a4870c348c50443a2e22d015c3828.zip |
fixed `root()`, `textPath()`, `text.path()` and `path.text()` and removed font-family and size from the defaults list3.0.10
Diffstat (limited to 'src/elements/Dom.js')
-rw-r--r-- | src/elements/Dom.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elements/Dom.js b/src/elements/Dom.js index 458ebbc..a0afa6d 100644 --- a/src/elements/Dom.js +++ b/src/elements/Dom.js @@ -7,7 +7,7 @@ import { create, register } from '../utils/adopter.js' -import { find } from '../modules/core/selector.js' +import { find, findOne } from '../modules/core/selector.js' import { globals } from '../utils/window.js' import { map } from '../utils/utils.js' import { ns } from '../modules/core/namespaces.js' @@ -313,5 +313,5 @@ export default class Dom extends EventTarget { } } -extend(Dom, { attr, find }) +extend(Dom, { attr, find, findOne }) register(Dom) |