diff options
author | Max Kostikov <max@kostikov.co> | 2019-12-04 11:50:56 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-12-04 11:50:56 +0100 |
commit | dce8516da45036e6216d1303c7476bcd0b838787 (patch) | |
tree | f956b0ac75b68dd951ecc74133957489c6cc615c /view/js/main.js | |
parent | efa11cbc74d399131aeaa1a7039c2fa76baaca38 (diff) | |
download | volse-hubzilla-dce8516da45036e6216d1303c7476bcd0b838787.tar.gz volse-hubzilla-dce8516da45036e6216d1303c7476bcd0b838787.tar.bz2 volse-hubzilla-dce8516da45036e6216d1303c7476bcd0b838787.zip |
More pinned items frontend processing fixes
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/view/js/main.js b/view/js/main.js index f45a06b24..b14befffa 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1128,15 +1128,17 @@ function dopin(id) { .done(function() { var i = $('#wall-item-pinned-' + id); var me = $('#item-pinnable-' + id); - if($('.pinned-item').length) { + var pin = $('#pinned-wrapper-' + id); + if(pin.length) { $('html, body').animate({ scrollTop: $('#region_2').offset().top }, 'slow', function() { - $('.pinned-item').fadeTo('fast', 0.33, function() { this.remove(); }); + pin.fadeTo('fast', 0.33, function() { this.remove(); }); }); }; - $('.wall-item-pinned').remove(); + pin.remove(); $('.dropdown-item-pinnable').html($('.dropdown-item-pinnable').html().replace(aStr['unpin_item'],aStr['pin_item'])); + $('.wall-item-pinned').remove() if(i.length == 0) { - $('<span class="float-right wall-item-pinned" title="' + aStr['pinned'] + '" id="wall-item-pinned-' + id + '"><i class="fa fa-thumb-tack"> </i></span>') + $('<span class="float-right wall-item-pinned" title="' + aStr['pinned'] + '" id="wall-item-pinned-' + id + '"><i class="fa fa-thumb-tack"> </i></span>').insertBefore('#wall-item-info-' + id); me.html(me.html().replace(aStr['pin_item'],aStr['unpin_item'])); }; }) |