diff options
author | friendica <info@friendica.com> | 2014-09-20 16:22:21 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-20 16:22:21 -0700 |
commit | 44cb423f21b6a34a138e7ffd2814fdd08788cfbe (patch) | |
tree | bbd84e79b59b3e6ccd848758a65aeae9033d37fa /view/js | |
parent | 8d23a8da8dd7326d6ce9c3a64f96e5325a09d4a1 (diff) | |
parent | a1773fea2529e6e3b1dcc816e948dacb4a250705 (diff) | |
download | volse-hubzilla-44cb423f21b6a34a138e7ffd2814fdd08788cfbe.tar.gz volse-hubzilla-44cb423f21b6a34a138e7ffd2814fdd08788cfbe.tar.bz2 volse-hubzilla-44cb423f21b6a34a138e7ffd2814fdd08788cfbe.zip |
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/view/js/main.js b/view/js/main.js index 2e297c9d6..086ef3196 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -704,22 +704,26 @@ function updateConvItems(mode,data) { } - function justifyPhotos(bParam_page) { + function justifyPhotos() { justifiedGalleryActive = true; - $('#photo-album-contents-' + bParam_page).justifiedGallery({ - lastRow : 'nojustify', + $('#photo-album-contents').justifiedGallery({ margins: 3, - sizeRangeSuffixes : { + sizeRangeSuffixes: { 'lt100': '-2', 'lt240': '-2', 'lt320': '-2', - 'lt500': '-1', + 'lt500': '', 'lt640': '-1', 'lt1024': '-0' } }).on('jg.complete', function(e){ justifiedGalleryActive = false; }); } + function justifyPhotosAjax() { + justifiedGalleryActive = true; + $('#photo-album-contents').justifiedGallery('norewind').on('jg.complete', function(e){ justifiedGalleryActive = false; }); + } + function notify_popup_loader(notifyType) { /* notifications template */ |