Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordanielvincent <danielgrippi@gmail.com>2010-08-27 02:13:33 +0400
committerdanielvincent <danielgrippi@gmail.com>2010-08-27 02:13:33 +0400
commita886b8ddbc8f6089926869041c5fa8643c8e9ad7 (patch)
treed0a992e6969c0b996dcb852ae6703bb9634b76f8 /app/uploaders
parent1d515e7b7e7bca08f884f0ac3e22f65c36c19f52 (diff)
made photos for album previews 200x200, small thumbnails now at 50x50
Diffstat (limited to 'app/uploaders')
-rw-r--r--app/uploaders/image_uploader.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/uploaders/image_uploader.rb b/app/uploaders/image_uploader.rb
index 732367ffa..0ae5ce446 100644
--- a/app/uploaders/image_uploader.rb
+++ b/app/uploaders/image_uploader.rb
@@ -16,7 +16,7 @@ class ImageUploader < CarrierWave::Uploader::Base
end
version :thumb_small do
- process :resize_to_fill => [30,30]
+ process :resize_to_fill => [50,50]
end
version :thumb_medium do
@@ -24,7 +24,7 @@ class ImageUploader < CarrierWave::Uploader::Base
end
version :thumb_large do
- process :resize_to_fill => [300,300]
+ process :resize_to_fill => [200,200]
end
version :scaled_full do