allow case sensitive yxml nodes

This commit is contained in:
Kevin Jahns
2019-06-14 15:59:00 +02:00
parent 4c38619b5d
commit e7280c7ae2
2 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ import * as decoding from 'lib0/decoding.js'
export class YXmlElement extends YXmlFragment {
constructor (nodeName = 'UNDEFINED') {
super()
this.nodeName = nodeName.toUpperCase()
this.nodeName = nodeName
/**
* @type {Map<string, any>|null}
* @private