diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-05-28 12:33:07 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-05-28 12:33:07 -0400 |
commit | 7393dccde816bafca2e3efe534fae56339e2c536 (patch) | |
tree | 8024af20c55e600481a6d81642abbecadcd425e3 /view/tpl | |
parent | ae94e8a855d31125b96e158c0fb8c0d6f22631d6 (diff) | |
download | volse-hubzilla-7393dccde816bafca2e3efe534fae56339e2c536.tar.gz volse-hubzilla-7393dccde816bafca2e3efe534fae56339e2c536.tar.bz2 volse-hubzilla-7393dccde816bafca2e3efe534fae56339e2c536.zip |
Page content is loaded from the file on disk
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/wiki.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/wiki.tpl b/view/tpl/wiki.tpl index a18831aa5..26258e7c2 100644 --- a/view/tpl/wiki.tpl +++ b/view/tpl/wiki.tpl @@ -86,7 +86,7 @@ var editor = ace.edit("ace-editor"); editor.setTheme("ace/theme/github"); editor.getSession().setMode("ace/mode/markdown"); - editor.getSession().setValue('{{$content}}'); + editor.getSession().setValue({{$content}}); $('#wiki-get-preview').click(function (ev) { $.post("wiki/{{$channel}}/preview", {content: editor.getValue()}, function (data) { |