1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-02 18:23:28 +00:00

Make sure we animate emptying the list widget

This commit is contained in:
Jeremy Ruston 2013-11-05 08:52:17 +00:00
parent 7c250fd7fe
commit 6a0ae2c48b

View File

@ -175,8 +175,10 @@ ListWidget.prototype.handleListChanges = function(changedTiddlers) {
return this.refreshChildren(changedTiddlers); return this.refreshChildren(changedTiddlers);
} else { } else {
// Replace the previous content with the empty message // Replace the previous content with the empty message
for(t=this.children.length-1; t>=0; t--) {
this.removeListItem(t);
}
var nextSibling = this.findNextSiblingDomNode(); var nextSibling = this.findNextSiblingDomNode();
this.removeChildDomNodes();
this.makeChildWidgets(this.getEmptyMessage()); this.makeChildWidgets(this.getEmptyMessage());
this.renderChildren(this.parentDomNode,nextSibling); this.renderChildren(this.parentDomNode,nextSibling);
return true; return true;