class DidPaginate::NextPageItem

Public Class Methods

new(url, content = next_span, is_current = false) click to toggle source
Calls superclass method DidPaginate::PageItem::new
# File lib/did_paginate/page_item.rb, line 54
def initialize(url, content = next_span, is_current = false)
  super(url, content, is_current)
end

Private Instance Methods

next_span() click to toggle source
# File lib/did_paginate/page_item.rb, line 60
def next_span
  '<span aria-hidden="true">&raquo;</span>'.html_safe
end