forked from MarseyWorld/MarseyWorld
remove typing
parent
03014dc62c
commit
058eb11b4d
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue