blob: 6a93a3f791a902691db0f5565633714d20081a03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { nodeOrNew, register, wrapWithAttrCheck } from '../utils/adopter.js'
import { registerMethods } from '../utils/methods.js'
import Container from './Container.js'
export default class G extends Container {
constructor (node) {
super(nodeOrNew('g', node), node)
}
}
registerMethods({
Element: {
// Create a group element
group: wrapWithAttrCheck(function () {
return this.put(new G())
})
}
})
register(G)
|