Aevann1 2022-09-12 09:34:12 +02:00
parent d6a0426d89
commit 56c4f8ccf0
2 changed files with 3 additions and 3 deletions

View File

@ -307,7 +307,7 @@ function switchEmojiTab(e)
}
async function start_search() {
emojiSearcher.addQuery(emojiSearchBarDOM.value.trim().toLowerCase());
emojiSearcher.addQuery(emojiSearchBarDOM.value.trim());
// Remove any selected tab, now it is meaningless
for(let i = 0; i < classesSelectorDOM.children.length; i++)
@ -469,7 +469,7 @@ function update_speed_emoji_modal(event)
{
const box_coords = update_ghost_div_textarea(event.target);
let text = event.target.value;
let text = event.target.value.toLowerCase();
// Unused, but left incase anyone wants to use this more efficient method for emojos
switch (event.data)

View File

@ -21,7 +21,7 @@ set CACHE_VER = {
'js/comments_admin.js': 4000,
'js/comments_v.js': 4001,
'js/submission_listing.js': 4000,
'js/emoji_modal.js': 4002,
'js/emoji_modal.js': 4003,
'js/formatting.js': 4000,
'js/lottery.js': 4000,
'js/marked.js': 4006,