1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-07 02:53:00 +00:00

Get rid of more vestiges of the old empty generation mechanism

This commit is contained in:
Jeremy Ruston
2012-11-16 22:40:25 +00:00
parent 454f892cf2
commit 0dbe4c0291
2 changed files with 3 additions and 10 deletions

View File

@@ -57,9 +57,7 @@ Command.prototype.execute = function() {
case "GET":
if(path === "/") {
response.writeHead(200, {"Content-Type": serveType});
var text = self.commander.wiki.renderTiddler(renderType,rootTiddler,{
"with": ["","[!is[shadow]]"]
});
var text = self.commander.wiki.renderTiddler(renderType,rootTiddler);
response.end(text, "utf8");
} else {
response.writeHead(404);