diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-11-08 19:49:49 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-11-08 19:49:49 +0100 |
commit | 09e7d0b595da5a2e86e375ea4bd9bd7aba02c588 (patch) | |
tree | ae4d2df2887187bed13756c0cc79657cca680cf2 /src/elements/Doc.js | |
parent | 8c81fb7c2e6e9842570d27a84b1a1c600c82c16b (diff) | |
download | svg.js-09e7d0b595da5a2e86e375ea4bd9bd7aba02c588.tar.gz svg.js-09e7d0b595da5a2e86e375ea4bd9bd7aba02c588.zip |
added possibility to pass in additional attribues to element creators (#796)
e.g.
- `canvas.rect({x:100})` or
- `canvas.rect(100, 100, {x:100})`
Diffstat (limited to 'src/elements/Doc.js')
-rw-r--r-- | src/elements/Doc.js | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/elements/Doc.js b/src/elements/Doc.js index 2132491..0d862ba 100644 --- a/src/elements/Doc.js +++ b/src/elements/Doc.js @@ -1,4 +1,9 @@ -import { adopt, nodeOrNew, register } from '../utils/adopter.js' +import { + adopt, + nodeOrNew, + register, + wrapWithAttrCheck +} from '../utils/adopter.js' import { ns, svgjs, xlink, xmlns } from '../modules/core/namespaces.js' import { registerMethods } from '../utils/methods.js' import Container from './Container.js' @@ -63,9 +68,9 @@ export default class Doc extends Container { registerMethods({ Container: { // Create nested svg document - nested () { + nested: wrapWithAttrCheck(function () { return this.put(new Doc()) - } + }) } }) |