1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 02:37:14 +00:00

Merge 749eb13dda65efa1cea04c469e6e3247862da3fc into 961e74f73d230d0028efb586db07699120eac888

This commit is contained in:
buggyj 2025-04-04 15:00:27 +02:00 committed by GitHub
commit 4d915a5f8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -756,11 +756,30 @@ Widget.prototype.findFirstDomNode = function() {
return null;
};
/*
Remove any DOM nodes created by this widget or its children
Depth first destroy
*/
Widget.prototype.removeChildDomNodes = function() {
// If this widget has directly created DOM nodes, delete them and exit. This assumes that any child widgets are contained within the created DOM nodes, which would normally be the case
Widget.prototype.desendDestroy = function() {
this.waitDestroy = true; //for blocking repeat calls to this method from removeChildDomNodes
$tw.utils.each(this.children,function(childWidget) {
childWidget.desendDestroy();
});
if (this.destroy) {
this.destroy();
}
this.waitDestroy = false;
};
Widget.prototype.waitDestroy = false;
/*
Remove any DOM nodes created by this widget or its children, and start destroy procedure
*/
Widget.prototype.removeChildDomNodes = function(destroy) {
var destroy = (destroy !== undefined ? destroy : true);
// If this widget has directly created DOM nodes, delete them. This assumes that any child widgets are contained within the created DOM nodes, which would normally be the case
if(this.domNodes.length > 0) {
$tw.utils.each(this.domNodes,function(domNode) {
domNode.parentNode.removeChild(domNode);
@ -769,9 +788,10 @@ Widget.prototype.removeChildDomNodes = function() {
} else {
// Otherwise, ask the child widgets to delete their DOM nodes
$tw.utils.each(this.children,function(childWidget) {
childWidget.removeChildDomNodes();
childWidget.removeChildDomNodes(false);
});
}
}
if (destroy && !this.waitDestroy) this.desendDestroy();
};
/*