fix thumb image

This commit is contained in:
manson 2015-02-13 14:57:12 +08:00
parent 5f5acf9b6d
commit a0768d5076
2 changed files with 1 additions and 5 deletions

View File

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

View File

@ -50,10 +50,6 @@ class GalleryUploader < CarrierWave::Uploader::Base
# end # end
version :thumb do version :thumb do
process :resize_to_fill => [200, 200]
end
version :thumb_fixed_width do
process :resize_to_limit => [200, 0] process :resize_to_limit => [200, 0]
end end