Display project analytics in modal box
This commit is contained in:
@@ -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'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user