Browse Source

Added "dots" class to paginator.

Taylor Otwell 13 years ago
parent
commit
0f17aff723
1 changed files with 2 additions and 2 deletions
  1. 2 2
      system/paginator.php

+ 2 - 2
system/paginator.php

@@ -180,7 +180,7 @@ class Paginator {
 	 */
 	protected function beginning()
 	{
-		return $this->range(1, 2).' ... ';
+		return $this->range(1, 2).'<span class="dots">...</span>';
 	}
 
 	/**
@@ -190,7 +190,7 @@ class Paginator {
 	 */
 	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());
 	}
 
 	/**