From b7b5af2b7234e3f8c011442751a40ec26760e5d9 Mon Sep 17 00:00:00 2001 From: banjun Date: Mon, 22 Dec 2014 19:35:43 +0900 Subject: [PATCH] add enableTaskList to post params for _preview --- src/main/twirl/repo/editor.scala.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/twirl/repo/editor.scala.html b/src/main/twirl/repo/editor.scala.html index c23eb769b..606bc93b8 100644 --- a/src/main/twirl/repo/editor.scala.html +++ b/src/main/twirl/repo/editor.scala.html @@ -127,7 +127,8 @@ $(function(){ $.post('@url(repository)/_preview', { content : editor.getValue(), enableWikiLink : false, - enableRefsLink : false + enableRefsLink : false, + enableTaskList : false }, function(data){ $('#preview').empty().append( $('
').html(data));