change show method image thumb size

This commit is contained in:
manson 2015-02-13 14:48:55 +08:00
parent 481f345382
commit 5f5acf9b6d
2 changed files with 5 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class GalleriesController < ApplicationController
{
"image-description" => a.description,
"link_to_show" => "/" + I18n.locale.to_s + params[:url] + "/-" + a.id.to_s + "?method=theater",
"thumb-src" => a.file.thumb.url
"thumb-src" => a.file.thumb_fixed_width.url
}
end
{

View File

@ -53,6 +53,10 @@ class GalleryUploader < CarrierWave::Uploader::Base
process :resize_to_fill => [200, 200]
end
version :thumb_fixed_width do
process :resize_to_limit => [200, 0]
end
version :theater do
process :resize_to_limit => [1920, 1080]
end