User:So9q/FilterTranslations.js

Hello, you have come here looking for the meaning of the word User:So9q/FilterTranslations.js. In DICTIOUS you will not only get to know all the dictionary meanings for the word User:So9q/FilterTranslations.js, but we will also tell you about its etymology, its characteristics and you will know how to say User:So9q/FilterTranslations.js in singular and plural. Everything you need to know about the word User:So9q/FilterTranslations.js you have here. The definition of the word User:So9q/FilterTranslations.js will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofUser:So9q/FilterTranslations.js, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
/*
** Filter the list of translations
**
** Author So9q
** Year: 2019
** License: GPL-v3 or later
** Synopsis: Filter the list of translations to hide clutter when translating.
*/
if (typeof window.CustomLanguagesFilter == 'undefined') {
// CustomLanguagesFilter is not defined, set to defaults
window.CustomLanguagesFilter = ", , , , , , ";
}
// Hide all
$(".NavFrame").children(".NavContent")
.find(".translations tr:first-child li").hide();
// Show only the ones we want
$(".NavFrame").children(".NavContent")
.find(".translations tr:first-child li").find(CustomLanguagesFilter).parentsUntil("ul").show();