Sha256: ee57c6e10fa64e9e20b38acc708738e297f2eb925672452ce9af3257d9a8e651
Contents?: true
Size: 774 Bytes
Versions: 11
Compression:
Stored size: 774 Bytes
Contents
module EnjuManifestationViewer module ApplicationHelper def google_book_search_preview(isbn) render partial: 'manifestations/google_book_search', locals: {isbn: isbn} end def embed_content(manifestation) if manifestation.youtube_id render partial: 'manifestations/youtube', locals: {manifestation: manifestation} elsif manifestation.nicovideo_id render partial: 'manifestations/nicovideo', locals: {manifestation: manifestation} elsif manifestation.flickr.present? render partial: 'manifestations/flickr', locals: {manifestation: manifestation} elsif manifestation.respond_to?(:ipaper_id) render partial: 'manifestations/scribd', locals: {manifestation: manifestation} end end end end
Version data entries
11 entries across 11 versions & 1 rubygems