Fix output type for view format htmlwikified

This commit is contained in:
Jeremy Ruston
2013-10-21 18:31:27 +01:00
parent 3005604b83
commit 167116d416
+1 -1
View File
@@ -118,7 +118,7 @@ ViewWidget.prototype.getValueAsText = function() {
};
ViewWidget.prototype.getValueAsHtmlWikified = function() {
return this.wiki.new_renderText("text/plain","text/vnd.tiddlywiki",this.getValueAsText());
return this.wiki.new_renderText("text/html","text/vnd.tiddlywiki",this.getValueAsText(),this);
};
ViewWidget.prototype.getValueAsHtmlEncoded = function() {