remove typing

pull/225/head
Aevann 2024-03-07 18:49:47 +02:00
parent 03014dc62c
commit 058eb11b4d
4 changed files with 0 additions and 23 deletions

View File

@ -174,10 +174,6 @@ function fetchEmojis() {
})
}
/**
*
* @param {Event} e
*/
function switchEmojiTab(e)
{
const className = e.currentTarget.dataset.className;
@ -221,10 +217,6 @@ async function start_search() {
classesSelectorDOM.children[i].children[0].classList.remove("active");
}
/**
* Add the selected emoji to the targeted text area
* @param {Event} event
*/
function emojiAddToInput(event)
{
// This should not happen if used properly but whatever

View File

@ -24,11 +24,6 @@ const groupsSearchDictionary = {
this.array.splice(target, 0, groupName);
},
/**
* We also check for substrings! (sigh)
* @param {String} groupName
* @returns {Set}
*/
completeSearch: function(query) {
query = query.toLowerCase()
const result = new Set();

View File

@ -24,11 +24,6 @@ const usersSearchDictionary = {
this.array.splice(target, 0, userName);
},
/**
* We also check for substrings! (sigh)
* @param {String} userName
* @returns {Set}
*/
completeSearch: function(query) {
query = query.toLowerCase()
const result = new Set();

View File

@ -33,11 +33,6 @@ const emojisSearchDictionary = {
this.dict.splice(target, 0, new EmojisDictNode(tag, emojiName));
},
/**
* We also check for substrings! (sigh)
* @param {String} tag
* @returns {Set}
*/
completeSearch: function(query) {
query = query.toLowerCase()
const result = new Set();