Cross Reference: pagination_helper.rb
xref
: /
ontohub
/
app
/
helpers
/
pagination_helper.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
pagination_helper.rb revision c98040ed8e5df7fb357b221c8144d6e46f3a7840
module
PaginationHelper
def
pagination
(
collection
, &
block
)
pages
=
paginate
(
collection
)
html
=
''
html
<< pages
html << capture_haml(&block)
html << pages
html.html_safe
end
end