aboutsummaryrefslogtreecommitdiffstats
path: root/view/jot-header.tpl
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-24 17:00:22 -0700
committerFriendika <info@friendika.com>2011-10-24 17:00:22 -0700
commit3b33c0d075fcce7f10468ad749742950077768b3 (patch)
treeeb44df56f35d72c5771adc13b14048b73189a416 /view/jot-header.tpl
parent4218e3f4945af7101c626852bda09d2c591b8e0c (diff)
downloadvolse-hubzilla-3b33c0d075fcce7f10468ad749742950077768b3.tar.gz
volse-hubzilla-3b33c0d075fcce7f10468ad749742950077768b3.tar.bz2
volse-hubzilla-3b33c0d075fcce7f10468ad749742950077768b3.zip
allow tag input to contain leading '#'
Diffstat (limited to 'view/jot-header.tpl')
-rw-r--r--view/jot-header.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/jot-header.tpl b/view/jot-header.tpl
index b06712407..ecf27e1b1 100644
--- a/view/jot-header.tpl
+++ b/view/jot-header.tpl
@@ -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();