diff options
author | friendica <info@friendica.com> | 2015-01-05 14:41:04 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-05 14:41:04 -0800 |
commit | 3df3ab563004423477640393eb8e50cb3d2fe8d6 (patch) | |
tree | b1b82983500c69c5a097c49567e87836288f26df /view/js/main.js | |
parent | 05a237b808783deb3fc1de2f9e2bbb7f03c60b21 (diff) | |
parent | c45456fa3342bc72d30c20bafd029913930130aa (diff) | |
download | volse-hubzilla-3df3ab563004423477640393eb8e50cb3d2fe8d6.tar.gz volse-hubzilla-3df3ab563004423477640393eb8e50cb3d2fe8d6.tar.bz2 volse-hubzilla-3df3ab563004423477640393eb8e50cb3d2fe8d6.zip |
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/view/js/main.js b/view/js/main.js index 8c48bbb72..85aea9875 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -269,9 +269,9 @@ } // fancyboxes - $("a.popupbox").fancybox({ - 'transitionIn' : 'elastic', - 'transitionOut' : 'elastic' + // Is this actually used anywhere? + $("a.popupbox").colorbox({ + 'transition' : 'elastic' }); @@ -598,14 +598,15 @@ function updateConvItems(mode,data) { $(".wall-item-body, .contact-info").each(function() { if($(this).height() > divmore_height + 10) { if(! $(this).hasClass('divmore')) { - $(this).divgrow({ initialHeight: divmore_height, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false }); + $(this).readmore({collapsedHeight: divmore_height, moreLink: '<a href="#">'+aStr['divgrowmore']+'</a>', lessLink: '<a href="#">'+aStr['divgrowless']+'</a>'}); $(this).addClass('divmore'); } - } + } }); } function liveUpdate() { + if(typeof profile_uid === 'undefined') profile_uid = false; /* Should probably be unified with channelId defined in head.tpl */ if((src == null) || (stopped) || (! profile_uid)) { $('.like-rotator').spin(false); return; } if(($('.comment-edit-text-full').length) || (in_progress)) { if(livetime) { |