14 lines
422 B
Ruby
14 lines
422 B
Ruby
module PhotosHelper
|
|
|
|
def linked_scaled_photo(photo, album)
|
|
link_to (image_tag photo.image.url(:scaled_full)), photo_path(album.next_photo(photo)), :rel => "prefetch"
|
|
end
|
|
|
|
def link_to_prev(photo, album)
|
|
link_to "<< prev", photo_path(album.prev_photo(photo)), :rel => "prefetch"
|
|
end
|
|
|
|
def link_to_next(photo, album)
|
|
link_to "next >>", photo_path(album.next_photo(photo)), :rel => "prefetch"
|
|
end
|
|
end
|