diff options
| author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-03-12 22:09:17 -0400 |
|---|---|---|
| committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-03-12 22:09:17 -0400 |
| commit | 64ac705c1e9808ee6d3e5d7d6a07514f2e125f99 (patch) | |
| tree | 8bf44fb03e918657e2a081bb216126f557559184 /controllers/board.php | |
| parent | 9722cf61520b166454ab7b4cda5b610d56f1fa77 (diff) | |
Refresh the board only when it's necessary and add a link on the task title
Diffstat (limited to 'controllers/board.php')
| -rw-r--r-- | controllers/board.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/controllers/board.php b/controllers/board.php index f0af2606..b07ca61c 100644 --- a/controllers/board.php +++ b/controllers/board.php @@ -276,7 +276,8 @@ class Board extends Base } $this->response->json(array( - 'result' => $this->board->saveTasksPosition($this->request->getValues()) + 'result' => $this->board->saveTasksPosition($this->request->getValues()), + 'refresh' => $this->event->getLastListenerExecuted() !== '' )); } } |
