mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-25 01:20:30 +00:00
Fix problem with CecilyView that is initialised with an empty message
This commit is contained in:
parent
97c7c458f6
commit
3161e8d8ce
@ -21,10 +21,12 @@ function CecilyListView(listMacro) {
|
|||||||
// Position the initial list entries on the map
|
// Position the initial list entries on the map
|
||||||
this.loadMap();
|
this.loadMap();
|
||||||
for(var t=0; t<listFrame.children.length; t++) {
|
for(var t=0; t<listFrame.children.length; t++) {
|
||||||
var title = listFrame.children[t].listElementInfo.title,
|
if(listFrame.children[t].listElementInfo) {
|
||||||
domNode = listFrame.children[t].domNode;
|
var domNode = listFrame.children[t].domNode,
|
||||||
domNode.style.position = "absolute";
|
title = listFrame.children[t].listElementInfo.title;
|
||||||
this.positionTiddler(title,domNode);
|
domNode.style.position = "absolute";
|
||||||
|
this.positionTiddler(title,domNode);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user