1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-29 08:43:14 +00:00

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

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() {