Commit 0f17aff7 authored by Taylor Otwell's avatar Taylor Otwell

Added "dots" class to paginator.

parent acc27998
...@@ -180,7 +180,7 @@ class Paginator { ...@@ -180,7 +180,7 @@ class Paginator {
*/ */
protected function beginning() protected function beginning()
{ {
return $this->range(1, 2).' ... '; return $this->range(1, 2).'<span class="dots">...</span>';
} }
/** /**
...@@ -190,7 +190,7 @@ class Paginator { ...@@ -190,7 +190,7 @@ class Paginator {
*/ */
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());
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment