User:Cbigorgne/common.js

In today's world, User:Cbigorgne/common.js has become a topic of great relevance and interest to a wide spectrum of people. Whether due to its impact on society, its relevance in history, its influence on popular culture, User:Cbigorgne/common.js has managed to capture the attention of millions of individuals around the world. This phenomenon has generated extensive debate and analysis in different areas, which has led to the production of numerous articles that seek to explore and explain its multiple facets. In this sense, the importance of addressing the topic of User:Cbigorgne/common.js lies in its ability to inspire reflections, raise questions and generate greater understanding about its significance today.
/* <nowiki> */
/* importScript("http://fr.wikipedia.orghttps://wikifreehand.com/en/Utilisateur:Cantons-de-l%27Est/EC.js"); */
 
/* {{Projet:JavaScript/Script|sortInterWiki}} */
 
// Organise les liens interwiki selon un certain ordre
// Auteur : Sanao, d'après une idée de Lilyu ; réécriture complète par Arkanosis
 
// Trie les interwiki selon un ordre défini par la variable globale order_lang
$(function() {
 
  var langs = $('#p-lang ul');
  var order = (
    typeof order_lang === 'undefined'
    ? 
    : order_lang
  ).reverse();
 
  $.each(order, function(_, lang) {
    langs.find('li.interwiki-' + lang).prependTo(langs);
  });
 
});
/* </nowiki> */