No more xml differentiation for 'scratch' type of comments.

This commit is contained in:
Karishma Chadha 2018-05-30 15:34:27 -04:00
parent f079eb4bbd
commit acd728dc2b

View file

@ -26,7 +26,7 @@ class Comment {
} }
toXML () { toXML () {
return `<comment type="scratch" id="${this.id}" x="${this.x}" y="${ return `<comment id="${this.id}" x="${this.x}" y="${
this.y}" w="${this.width}" h="${this.height}" pinned="${ this.y}" w="${this.width}" h="${this.height}" pinned="${
this.blockId !== null}" minimized="${this.minimized}">${this.text}</comment>`; this.blockId !== null}" minimized="${this.minimized}">${this.text}</comment>`;
} }