remove commented code

This commit is contained in:
pmario 2024-04-25 18:13:09 +02:00
parent a53c6b5e5c
commit 0e7caca935
1 changed files with 0 additions and 3 deletions

View File

@ -637,9 +637,6 @@ Render the children of this widget into the DOM
*/
Widget.prototype.renderChildren = function(parent,nextSibling) {
var children = this.children;
// if(this.tag) {
// var x = this.getAncestorCountDom(true);
// }
for(var i = 0; i < children.length; i++) {
children[i].render(parent,nextSibling);
};