diff options
Diffstat (limited to 'app/Controller/Board.php')
-rw-r--r-- | app/Controller/Board.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php index 179c6b3c..a552b9cf 100644 --- a/app/Controller/Board.php +++ b/app/Controller/Board.php @@ -321,6 +321,18 @@ class Board extends Base } /** + * Display swimlane description in tooltip + * + * @access public + */ + public function swimlane() + { + $this->getProject(); + $swimlane = $this->swimlane->getById($this->request->getIntegerParam('swimlane_id')); + $this->response->html($this->template->render('board/tooltip_description', array('task' => $swimlane))); + } + + /** * Enable collapsed mode * * @access public |