-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There should be a method to use a large image for the slideshow #19
Comments
Are you unable to configure the thumbnail field for the slideshow view? e.g.
|
@cbeer: that works, but then it is used both for the square small image and slideshow image. I'd prefer to use a different resolution for each. |
Got it. I forgot that the slideshow and the gallery used the same view type. |
dunn
added a commit
to dunn/alexandria
that referenced
this issue
Aug 15, 2017
Not sure when module Blacklight::GalleryHelper
WITH_LARGE_IMAGES = %w[
Image
ComponentMap
IndexMap
ScannedMap
].freeze
def choose_image(document, options)
if WITH_LARGE_IMAGES.include? document["has_model_ssim"].first
image_tag(document["image_url_ssm"].first, options)
else
render_thumbnail_tag(
document,
options,
url_options.reverse_merge(suppress_link: true)
)
end
end
end |
dunn
added a commit
to dunn/alexandria
that referenced
this issue
Aug 15, 2017
dunn
added a commit
to dunn/alexandria
that referenced
this issue
Aug 15, 2017
dunn
added a commit
to dunn/alexandria
that referenced
this issue
Aug 16, 2017
dunn
added a commit
to dunn/alexandria
that referenced
this issue
Aug 16, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently I'm overriding the whole partial. Ideally I could just use a config variable.
curationexperts/alexandria-legacy@d5e1ce7
The text was updated successfully, but these errors were encountered: