X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Fjot-header.tpl;h=ecfed6c423b23eb179cd45a4b0cc96c529e3bc93;hb=bb40e54dec9f72a3c415df5d3799eab0010c5ddf;hp=81d7d6d91863fe053a526b3264df8709a0ab3c78;hpb=e35f3f1ada264c03fe0c54e5ed0672c5a66ca001;p=friendica.git diff --git a/view/jot-header.tpl b/view/jot-header.tpl index 81d7d6d918..ecfed6c423 100644 --- a/view/jot-header.tpl +++ b/view/jot-header.tpl @@ -235,14 +235,18 @@ function initEditor(cb){ } function itemTag(id) { - $('#like-rotator-' + id).show(); reply = prompt("$term"); if(reply && reply.length) { reply = reply.replace('#',''); if(reply.length) { - $.get('tagger/' + id + '?term=' + reply, function(data) { - $('#like-rotator-' + id).hide(); - }); + + commentBusy = true; + $('body').css('cursor', 'wait'); + + $.get('tagger/' + id + '?term=' + reply); + if(timer) clearTimeout(timer); + timer = setTimeout(NavUpdate,3000); + liking = 1; } } }