From ebb6b2827d0496303852f524a551592295dd0040 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 13 Nov 2016 22:51:59 -0500 Subject: Replace SimpleMDE with custom Markdown editor --- app/Template/column/create.php | 2 +- app/Template/column/edit.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Template/column') diff --git a/app/Template/column/create.php b/app/Template/column/create.php index 812e9139..71c94062 100644 --- a/app/Template/column/create.php +++ b/app/Template/column/create.php @@ -16,7 +16,7 @@ form->checkbox('hide_in_dashboard', t('Hide tasks in this column in the dashboard'), 1) ?> form->label(t('Description'), 'description') ?> - form->textarea('description', $values, $errors, array(), 'markdown-editor') ?> + form->textEditor('description', $values, $errors) ?>
diff --git a/app/Template/column/edit.php b/app/Template/column/edit.php index 89487298..a72a5c84 100644 --- a/app/Template/column/edit.php +++ b/app/Template/column/edit.php @@ -18,7 +18,7 @@ form->checkbox('hide_in_dashboard', t('Hide tasks in this column in the dashboard'), 1, $values['hide_in_dashboard'] == 1) ?> form->label(t('Description'), 'description') ?> - form->textarea('description', $values, $errors, array(), 'markdown-editor') ?> + form->textEditor('description', $values, $errors) ?>
-- cgit v1.2.3