Fixed an mistake in the regular expression of the last update
This commit is contained in:
parent
eaf77f5c45
commit
2b9281a8a8
|
@ -1492,7 +1492,7 @@ const emoji_dict = {
|
||||||
};
|
};
|
||||||
function replace_emoji() {
|
function replace_emoji() {
|
||||||
$('.emoji_poss').each(function(){
|
$('.emoji_poss').each(function(){
|
||||||
const emojis = $(this).html().match(/(:[a-zA-Z_-]+?:)|✅/g);
|
const emojis = $(this).html().match(/(:[a-zA-Z\d+_-]+?:)|✅/g);
|
||||||
for(let i in emojis) {
|
for(let i in emojis) {
|
||||||
var emoji = emojis[i].replace(/-/g,"_");
|
var emoji = emojis[i].replace(/-/g,"_");
|
||||||
if(emoji_dict[emoji.substr(1,emoji.length-2)]) {
|
if(emoji_dict[emoji.substr(1,emoji.length-2)]) {
|
||||||
|
@ -1505,7 +1505,7 @@ $(this).removeClass('emoji_poss');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function replaced_emoji_return(original) {
|
function replaced_emoji_return(original) {
|
||||||
const emojis = original.match(/(:[a-zA-Z_-]+?:)/g);
|
const emojis = original.match(/(:[a-zA-Z\d+_-]+?:)/g);
|
||||||
for(let i in emojis) {
|
for(let i in emojis) {
|
||||||
var emoji = emojis[i].replace(/-/g,"_");
|
var emoji = emojis[i].replace(/-/g,"_");
|
||||||
if(emoji_dict[emoji.substr(1,emoji.length-2)]) {
|
if(emoji_dict[emoji.substr(1,emoji.length-2)]) {
|
||||||
|
|
Loading…
Reference in New Issue