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
Doing a few hello worlds here and I've put the "d-side-pane" along with a few others (see screen shot below) into a template in a custom widget. All worked ok when it was all stand alone in a html page but putting it into the template caused issues.
In the file ./deliteful/SidePane.js first line in the refreshRendering function there is
this.parentNode.style.overflow = "hidden";
It errors out here with the parentNode been null, if I change that to
Hello all,
Doing a few hello worlds here and I've put the "d-side-pane" along with a few others (see screen shot below) into a template in a custom widget. All worked ok when it was all stand alone in a html page but putting it into the template caused issues.
In the file ./deliteful/SidePane.js first line in the refreshRendering function there is
this.parentNode.style.overflow = "hidden";
It errors out here with the parentNode been null, if I change that to
if(this.parentNode != null){ this.parentNode.style.overflow = "hidden"; }
It works correctly, but I'm not 100% sure what the effects of that down the line are....
The text was updated successfully, but these errors were encountered: