diff --git a/core/modules/widgets/widget.js b/core/modules/widgets/widget.js index 49de172be..542a63c3b 100755 --- a/core/modules/widgets/widget.js +++ b/core/modules/widgets/widget.js @@ -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); };