forked from GithubBackups/vichan
Ignore U+25b6 in twemoji
This commit is contained in:
parent
eb4b1db309
commit
76c72fbd5d
@ -513,13 +513,14 @@ var twemoji = (function (
|
|||||||
|
|
||||||
}());
|
}());
|
||||||
|
|
||||||
onready(function(){
|
$(document).ready(function () {
|
||||||
var twemoji_opts = {
|
var twemoji_opts = {
|
||||||
callback: function(icon, options, variant) {
|
callback: function(icon, options, variant) {
|
||||||
switch ( icon ) {
|
switch ( icon ) {
|
||||||
case 'a9': // copyright
|
case 'a9': // copyright
|
||||||
case 'ae': // (R)
|
case 'ae': // (R)
|
||||||
case '2122': // TM
|
case '2122': // TM
|
||||||
|
case '25b6': // post filter
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return ''.concat(options.base, options.size, '/', icon, options.ext);
|
return ''.concat(options.base, options.size, '/', icon, options.ext);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user