From 8bf054a480ecc2d31b857cb27bd6256f1efdd74c Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 11 Feb 2017 17:22:10 -0500 Subject: Open comments in board view with a modal dialog instead of tooltip --- app/Template/comments/create.php | 11 ----------- app/Template/comments/show.php | 35 ----------------------------------- 2 files changed, 46 deletions(-) delete mode 100644 app/Template/comments/create.php delete mode 100644 app/Template/comments/show.php (limited to 'app/Template/comments') diff --git a/app/Template/comments/create.php b/app/Template/comments/create.php deleted file mode 100644 index 06173575..00000000 --- a/app/Template/comments/create.php +++ /dev/null @@ -1,11 +0,0 @@ -
- form->csrf() ?> - form->hidden('task_id', $values) ?> - form->hidden('user_id', $values) ?> - - form->textEditor('comment', $values, $errors, array('required' => true)) ?> - -
- -
-
diff --git a/app/Template/comments/show.php b/app/Template/comments/show.php deleted file mode 100644 index 3edf7076..00000000 --- a/app/Template/comments/show.php +++ /dev/null @@ -1,35 +0,0 @@ -
-
-

-
-
- -
- - url->icon('sort', t('change sorting'), 'CommentController', 'toggleSorting', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> - -
- - - render('comment/show', array( - 'comment' => $comment, - 'task' => $task, - 'project' => $project, - 'editable' => $editable, - 'is_public' => isset($is_public) && $is_public, - )) ?> - - - - render('comments/create', array( - 'values' => array( - 'user_id' => $this->user->getId(), - 'task_id' => $task['id'], - 'project_id' => $task['project_id'], - ), - 'errors' => array(), - 'task' => $task, - )) ?> - -
-
-- cgit v1.2.3