1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-21 04:59:49 +01:00

Ignore U+25b6 in twemoji

This commit is contained in:
8chan 2015-03-10 16:21:47 -07:00
parent eb4b1db309
commit 76c72fbd5d

View File

@ -513,13 +513,14 @@ var twemoji = (function (
}());
onready(function(){
$(document).ready(function () {
var twemoji_opts = {
callback: function(icon, options, variant) {
switch ( icon ) {
case 'a9': // copyright
case 'ae': // (R)
case '2122': // TM
case '25b6': // post filter
return false;
}
return ''.concat(options.base, options.size, '/', icon, options.ext);