Fix: flag emojis #64
This commit is contained in:
parent
57978bd152
commit
ad7c7ffa66
|
@ -54,7 +54,13 @@ function defEmoji(target){
|
||||||
var emojiraw = newpack.filter(function(item, index){
|
var emojiraw = newpack.filter(function(item, index){
|
||||||
if (item.short_name == target) return true;
|
if (item.short_name == target) return true;
|
||||||
});
|
});
|
||||||
emoji=twemoji.convert.fromCodePoint(emojiraw[0].unified);
|
var hex=emojiraw[0].unified.split("-");
|
||||||
|
if(hex.length===2){
|
||||||
|
emoji=twemoji.convert.fromCodePoint(hex[0])+twemoji.convert.fromCodePoint(hex[1]);
|
||||||
|
}else{
|
||||||
|
emoji=twemoji.convert.fromCodePoint(hex[0]);
|
||||||
|
}
|
||||||
|
console.log(emoji)
|
||||||
var now = $("#textarea").val();
|
var now = $("#textarea").val();
|
||||||
var selin = localStorage.getItem("cursor");
|
var selin = localStorage.getItem("cursor");
|
||||||
var now = $("#textarea").val();
|
var now = $("#textarea").val();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user