aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2019-12-04 11:50:56 +0100
committerMax Kostikov <max@kostikov.co>2019-12-04 11:50:56 +0100
commitdce8516da45036e6216d1303c7476bcd0b838787 (patch)
treef956b0ac75b68dd951ecc74133957489c6cc615c /view
parentefa11cbc74d399131aeaa1a7039c2fa76baaca38 (diff)
downloadvolse-hubzilla-dce8516da45036e6216d1303c7476bcd0b838787.tar.gz
volse-hubzilla-dce8516da45036e6216d1303c7476bcd0b838787.tar.bz2
volse-hubzilla-dce8516da45036e6216d1303c7476bcd0b838787.zip
More pinned items frontend processing fixes
Diffstat (limited to 'view')
-rw-r--r--view/js/main.js10
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">&nbsp;</i></span>')
+ $('<span class="float-right wall-item-pinned" title="' + aStr['pinned'] + '" id="wall-item-pinned-' + id + '"><i class="fa fa-thumb-tack">&nbsp;</i></span>').insertBefore('#wall-item-info-' + id);
me.html(me.html().replace(aStr['pin_item'],aStr['unpin_item']));
};
})