diff options
author | marijus <mario@mariovavti.com> | 2014-09-14 11:57:01 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-09-14 11:57:01 +0200 |
commit | 2728f5a104878ed3237f4d6a19bfbea67ffeecd0 (patch) | |
tree | 02cb548a4d81b2af89c600ca7ab9d15022e086f7 /view | |
parent | c27b60d98107e3949df3e48b9f5886483bf7ce57 (diff) | |
download | volse-hubzilla-2728f5a104878ed3237f4d6a19bfbea67ffeecd0.tar.gz volse-hubzilla-2728f5a104878ed3237f4d6a19bfbea67ffeecd0.tar.bz2 volse-hubzilla-2728f5a104878ed3237f4d6a19bfbea67ffeecd0.zip |
tryout - fetch larger thumbnail if image gets streched over its size
Diffstat (limited to 'view')
-rw-r--r-- | view/js/main.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/view/js/main.js b/view/js/main.js index 13f1fea8f..fae22eb59 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -712,12 +712,12 @@ function updateConvItems(mode,data) { margins: 3, rowHeight : 150, sizeRangeSuffixes : { - 'lt100': '', - 'lt240': '', - 'lt320': '', - 'lt500': '', - 'lt640': '', - 'lt1024': '' + 'lt100': '-2', + 'lt240': '-2', + 'lt320': '-2', + 'lt500': '-1', + 'lt640': '-1', + 'lt1024': '-0' } }).on('jg.complete', function(e){ justifiedGalleryActive = false; }); } |