diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-01-08 14:00:51 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-01-08 14:00:51 -0500 |
commit | b3a450bace8461fb7989d5406b9d9ec644d7df4a (patch) | |
tree | 89827b899d4a3fad9d123750955a0fc4692de312 /app/Core/Paginator.php | |
parent | ea2cbb76d5d48ef8d2601fc33edc55c15929b963 (diff) |
Display project analytics in modal box
Diffstat (limited to 'app/Core/Paginator.php')
-rw-r--r-- | app/Core/Paginator.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/app/Core/Paginator.php b/app/Core/Paginator.php index 046c539c..9075a713 100644 --- a/app/Core/Paginator.php +++ b/app/Core/Paginator.php @@ -374,7 +374,9 @@ class Paginator '← '.t('Previous'), $this->controller, $this->action, - $this->getUrlParams($this->page - 1, $this->order, $this->direction) + $this->getUrlParams($this->page - 1, $this->order, $this->direction), + false, + 'js-modal-replace' ); } else { $html .= '← '.t('Previous'); @@ -400,7 +402,9 @@ class Paginator t('Next').' →', $this->controller, $this->action, - $this->getUrlParams($this->page + 1, $this->order, $this->direction) + $this->getUrlParams($this->page + 1, $this->order, $this->direction), + false, + 'js-modal-replace' ); } else { $html .= t('Next').' →'; @@ -486,7 +490,9 @@ class Paginator $label, $this->controller, $this->action, - $this->getUrlParams($this->page, $column, $direction) + $this->getUrlParams($this->page, $column, $direction), + false, + 'js-modal-replace' ); } } |