Use filename as default title when loading tiddlers under Node

Fixing this regression gets the `classictools` plugin working again
print-window-tiddler
Jermolene 2017-11-05 14:14:00 +00:00
rodzic 6555fecbf3
commit 95b84dd0ca
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1527,7 +1527,7 @@ $tw.loadTiddlersFromPath = function(filepath,excludeRegExp) {
});
}
} else if(stat.isFile()) {
tiddlers.push($tw.loadTiddlersFromFile(filepath));
tiddlers.push($tw.loadTiddlersFromFile(filepath,{title: filepath}));
}
}
return tiddlers;