1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-10-23 19:57:38 +00:00

Fix document references

This commit is contained in:
Jeremy Ruston
2013-05-17 17:29:43 +01:00
parent 9739e825b4
commit 6e1cd46bc7
3 changed files with 3 additions and 3 deletions

View File

@@ -112,7 +112,7 @@ exports.startup = function() {
// Display the PageTemplate
var templateTitle = "$:/templates/PageTemplate",
parser = $tw.wiki.parseTiddler(templateTitle),
renderTree = new $tw.WikiRenderTree(parser,{wiki: $tw.wiki, context: {tiddlerTitle: templateTitle}});
renderTree = new $tw.WikiRenderTree(parser,{wiki: $tw.wiki, context: {tiddlerTitle: templateTitle}, document: document});
renderTree.execute();
var container = document.createElement("div");
document.body.insertBefore(container,document.body.firstChild);