From d1ce66373bfa1b395b81343347bf619dd2c8c515 Mon Sep 17 00:00:00 2001 From: EP Date: Wed, 20 Aug 2025 17:20:50 -0700 Subject: [PATCH] Tokenade default: set separator to Zero-Width Non-Joiner (zwnj) --- index.html | 8 ++++++++ js/app.js | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index f49e841..10ade5f 100644 --- a/index.html +++ b/index.html @@ -251,6 +251,12 @@
+
+ Quick picks +
+ +
+
+
@@ -917,6 +924,7 @@
+ -->
diff --git a/js/app.js b/js/app.js index f12a934..445e17c 100644 --- a/js/app.js +++ b/js/app.js @@ -53,11 +53,12 @@ window.app = new Vue({ filteredEmojis: [...window.emojiLibrary.EMOJI_LIST], selectedEmoji: null, carrierEmojiList: [...window.emojiLibrary.EMOJI_LIST], + quickCarrierEmojis: ['🐍','🐉','ðŸē','ðŸ”Ĩ','ðŸ’Ĩ','ðŸ—ŋ','⚓','⭐','âœĻ','🚀','💀','ðŸŠĻ','🍃','ðŸŠķ','ðŸ”Ū','ðŸĒ','🐊','ðŸĶŽ','🐍'], // Token Bomb Generator tbDepth: 3, tbBreadth: 4, tbRepeats: 5, - tbSeparator: 'zwj', + tbSeparator: 'zwnj', tbIncludeVS: true, tbIncludeNoise: true, tbRandomizeEmojis: true,