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
Version 2.8.2 raise the exception "hasChildNodes() is not a function" at line 745:
while (this.vDiv.hasChildNodes())
this.vDiv.removeChild(this.vDiv.firstChild);
The error is fixed by replacing this with
while (this.vDiv[0].hasChildNodes())
this.vDiv[0].removeChild(this.vDiv[0].firstChild);
The text was updated successfully, but these errors were encountered:
Version 2.8.2 raise the exception "hasChildNodes() is not a function" at line 745:
while (this.vDiv.hasChildNodes())
this.vDiv.removeChild(this.vDiv.firstChild);
The error is fixed by replacing this with
The text was updated successfully, but these errors were encountered: