Remove superfluous method
This commit is contained in:
parent
8ec8218e90
commit
4d85f8db1d
1 changed files with 0 additions and 10 deletions
10
render.js
10
render.js
|
@ -360,16 +360,6 @@ export class DomHtmlRenderer extends DomRenderer {
|
||||||
return document.createElement(name.replace(/([a-z])([A-Z])/g, "$1-$2"), options)
|
return document.createElement(name.replace(/([a-z])([A-Z])/g, "$1-$2"), options)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Creates a new HTML node
|
|
||||||
* @param {String} name
|
|
||||||
* @param {Array} args
|
|
||||||
*/
|
|
||||||
node(name, args) {
|
|
||||||
const element = this.createElement(name)
|
|
||||||
this.constructor.apply(element, args)
|
|
||||||
return element
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @type {Object<string,SpecialAttributeDescriptor>} */
|
/** @type {Object<string,SpecialAttributeDescriptor>} */
|
||||||
static specialAttributes = {
|
static specialAttributes = {
|
||||||
value: {
|
value: {
|
||||||
|
|
Loading…
Reference in a new issue