1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-19 16:55:14 +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

@@ -31,7 +31,7 @@ var WikiRenderTree = function(parser,options) {
this.wiki = options.wiki;
this.context = options.context || {};
this.parentRenderer = options.parentRenderer;
this.document = options.document || (typeof(document) === "object" ? document : null);
this.document = options.document;
// Hashmap of the renderer classes
if(!this.rendererClasses) {
WikiRenderTree.prototype.rendererClasses = $tw.modules.applyMethods("wikirenderer");