just_paginate 0.0.15 → 0.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. data/lib/just_paginate.rb +3 -3
  2. metadata +1 -1
data/lib/just_paginate.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  module JustPaginate
3
3
 
4
- VERSION = "0.0.15"
4
+ VERSION = "0.0.16"
5
5
 
6
6
  # TODO make sure negative numbers, non-integers etc are just converted to page 1.
7
7
  def self.page_value(page)
@@ -59,7 +59,7 @@ module JustPaginate
59
59
  page_element = ""
60
60
 
61
61
  if label == "..."
62
- page_element = "<li><a class='disabled'>#{label}</a></li>"
62
+ page_element = "<li class='disabled'><a>#{label}</a></li>"
63
63
  elsif label == "<"
64
64
  page_url = yield(curr_page-1)
65
65
  page_element = "<li><a rel='prev' href='#{page_url}'>#{label}</a></li>"
@@ -69,7 +69,7 @@ module JustPaginate
69
69
  else
70
70
  page_url = yield(label)
71
71
  if label.to_i == curr_page
72
- page_element = "<li><a class='active'>#{label}</a></li>"
72
+ page_element = "<li class='active'><a>#{label}</a></li>"
73
73
  else
74
74
  page_element = "<li><a href='#{page_url}'>#{label}</a></li>"
75
75
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: just_paginate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: