Remove spacing

This commit is contained in:
the-djmaze 2023-10-02 15:38:02 +02:00
parent d0e6a78f72
commit 31d50cf67e

View file

@ -3287,7 +3287,7 @@ class Squire
return this.focus(); return this.focus();
} }
_ensureBottomLine () { _ensureBottomLine() {
let root = this._root; let root = this._root;
let last = root.lastElementChild; let last = root.lastElementChild;
if (!last || last.nodeName !== blockTag || !isBlock(last)) { if (!last || last.nodeName !== blockTag || !isBlock(last)) {
@ -3297,11 +3297,11 @@ class Squire
// --- Get/Set data --- // --- Get/Set data ---
_getHTML () { _getHTML() {
return this._root.innerHTML; return this._root.innerHTML;
} }
_setHTML (html) { _setHTML(html) {
let root = this._root; let root = this._root;
let node = root; let node = root;
empty(root); empty(root);