You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wrote some text or any whitespace character (newline in my case) in the DOM element to render to and this results an endless loop.
For example: <div id='table-target'>text</div>. The firstChild of the div will be a TextNode.
This line of the code results the endless loop: while (this.el.firstChild) { this.el.remove(this.el.firstChild); }
The text was updated successfully, but these errors were encountered:
I wrote some text or any whitespace character (newline in my case) in the DOM element to render to and this results an endless loop.
For example:
<div id='table-target'>text</div>
. The firstChild of the div will be a TextNode.This line of the code results the endless loop:
while (this.el.firstChild) { this.el.remove(this.el.firstChild); }
The text was updated successfully, but these errors were encountered: