diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2023-09-03 09:49:01 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2023-09-03 09:49:01 +0200 |
commit | ca8ac554bfafe6b4d7985fe3130ff3dffa6029ca (patch) | |
tree | 5dcecd8f32564fb3fb95e8846344b0b26c05dc24 /src/elements/Svg.js | |
parent | d66be92f19e1004fd250ba1d020db2436f9eb65b (diff) | |
download | svg.js-ca8ac554bfafe6b4d7985fe3130ff3dffa6029ca.tar.gz svg.js-ca8ac554bfafe6b4d7985fe3130ff3dffa6029ca.zip |
doscontinue use of svgjs:data in favor of data-svg
Diffstat (limited to 'src/elements/Svg.js')
-rw-r--r-- | src/elements/Svg.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/elements/Svg.js b/src/elements/Svg.js index 7b36daa..40d50c9 100644 --- a/src/elements/Svg.js +++ b/src/elements/Svg.js @@ -4,7 +4,7 @@ import { register, wrapWithAttrCheck } from '../utils/adopter.js' -import { svg, svgjs, xlink, xmlns } from '../modules/core/namespaces.js' +import { svg, xlink, xmlns } from '../modules/core/namespaces.js' import { registerMethods } from '../utils/methods.js' import Container from './Container.js' import Defs from './Defs.js' @@ -34,9 +34,11 @@ export default class Svg extends Container { // Add namespaces namespace() { if (!this.isRoot()) return this.root().namespace() - return this.attr({ xmlns: svg, version: '1.1' }) - .attr('xmlns:xlink', xlink, xmlns) - .attr('xmlns:svgjs', svgjs, xmlns) + return this.attr({ xmlns: svg, version: '1.1' }).attr( + 'xmlns:xlink', + xlink, + xmlns + ) } removeNamespace() { |