From 6ee867040144d14d5e032f4ad9bdb74a2c4a0922 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Mon, 17 Mar 2025 16:17:42 +0100 Subject: [PATCH] post-menu.js: use unicode code with variant selector for equilateral triangle --- js/post-menu.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/post-menu.js b/js/post-menu.js index 79cfd868..c2155c00 100644 --- a/js/post-menu.js +++ b/js/post-menu.js @@ -104,8 +104,10 @@ function buildMenu(e) { function addButton(post) { var $ele = $(post); + // Use unicode code with ascii variant selector + // https://stackoverflow.com/questions/37906969/how-to-prevent-ios-from-converting-ascii-into-emoji $ele.find('input.delete').after( - $('', {href: '#', class: 'post-btn', title: 'Post menu'}).text('►') + $('', {href: '#', class: 'post-btn', title: 'Post menu'}).text('\u{25B6}\u{fe0e}') ); }