Method: Foliate::Pagination#offset
- Defined in:
- lib/foliate/pagination.rb
#offset ⇒ Integer
Computes the record set offset based on #current_page and #per_page.
46 47 48 |
# File 'lib/foliate/pagination.rb', line 46 def offset (current_page - 1) * per_page end |