mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 05:31:48 +02:00
Fix counter
This commit is contained in:
parent
d856d913f6
commit
1d6a04ca8e
1 changed files with 3 additions and 2 deletions
|
@ -446,8 +446,9 @@
|
|||
$("#compose_content").keyup(function(){
|
||||
inputText = $(this).val();
|
||||
inputText = inputText
|
||||
.replace(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g, 'xxxxxxxxxxxxxxxxxxxxxxx')
|
||||
.replace(/(^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9\.\-]+[a-z0-9]+)/ig, '$1@$3');
|
||||
.replace(/(^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9.-]+[a-z0-9]+)/ig, '$1@$3')
|
||||
.replace(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&/=]*)/g, 'xxxxxxxxxxxxxxxxxxxxxxx');
|
||||
|
||||
$("#count").text(inputText.length);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue