Added "dots" class to paginator.
This commit is contained in:
parent
acc279989c
commit
0f17aff723
|
@ -180,7 +180,7 @@ public function next($language = null)
|
||||||
*/
|
*/
|
||||||
protected function beginning()
|
protected function beginning()
|
||||||
{
|
{
|
||||||
return $this->range(1, 2).' ... ';
|
return $this->range(1, 2).'<span class="dots">...</span>';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -190,7 +190,7 @@ protected function beginning()
|
||||||
*/
|
*/
|
||||||
protected function ending()
|
protected function ending()
|
||||||
{
|
{
|
||||||
return ' ... '.$this->range($this->last_page() - 1, $this->last_page());
|
return '<span class="dots">...</span>'.$this->range($this->last_page() - 1, $this->last_page());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue