From 76c72fbd5d7406021dc0b5e7574a65312bee670a Mon Sep 17 00:00:00 2001 From: 8chan Date: Tue, 10 Mar 2015 16:21:47 -0700 Subject: [PATCH] Ignore U+25b6 in twemoji --- js/twemoji/twemoji.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/twemoji/twemoji.js b/js/twemoji/twemoji.js index c3bffbe8..bd0eb4d6 100644 --- a/js/twemoji/twemoji.js +++ b/js/twemoji/twemoji.js @@ -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);