mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
acl automention: fix stupid typo...
This commit is contained in:
parent
ad5a47aecf
commit
67f844f561
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ function ACL(backend_url, preset, automention){
|
|||
}
|
||||
|
||||
ACL.prototype.remove_mention = function(id) {
|
||||
if (!that.aclautomention) return;
|
||||
if (!that.automention) return;
|
||||
var nick = that.data[id].nick;
|
||||
var searchText = "@"+nick+"+"+id+" ";
|
||||
if (tinyMCE.activeEditor===null) {
|
||||
|
@ -54,7 +54,7 @@ ACL.prototype.remove_mention = function(id) {
|
|||
}
|
||||
|
||||
ACL.prototype.add_mention = function(id) {
|
||||
if (!that.aclautomention) return;
|
||||
if (!that.automention) return;
|
||||
var nick = that.data[id].nick;
|
||||
var searchText = "@"+nick+"+"+id+" ";
|
||||
if (tinyMCE.activeEditor===null) {
|
||||
|
|
Loading…
Reference in a new issue