mirror of
https://github.com/friendica/friendica
synced 2025-05-02 09:04:23 +02:00
allow tag input to contain leading '#'
This commit is contained in:
parent
4218e3f494
commit
3b33c0d075
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ function initEditor(cb){
|
|||
$('#like-rotator-' + id).show();
|
||||
reply = prompt("$term");
|
||||
if(reply && reply.length) {
|
||||
reply.replace('#','');
|
||||
reply = reply.replace('#','');
|
||||
if(reply.length) {
|
||||
$.get('tagger/' + id + '?term=' + reply, function(data) {
|
||||
$('#like-rotator-' + id).hide();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue