Inscríbete y crea tu propia colección de obras y artículos
MediaWiki:Common.js
Ir a la navegaciónIr a la búsqueda
Nota: después de guardar, quizás necesite refrescar la caché de su navegador para ver los cambios.
- Firefox / Safari: Mantenga presionada Mayús mientras pulsa el botón Actualizar, o presione Ctrl+F5 o Ctrl+R (⌘+R en Mac)
- Google Chrome: presione Ctrl+Shift+R (⌘+Mayús+R en Mac)
- Internet Explorer: mantenga presionada Ctrl mientras pulsa Actualizar, o presione Ctrl+F5
- Konqueror: pulse Recargar o presione F5
- Opera: vacía la caché en Herramientas → Preferencias
/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios en cada carga de página */ /** Ajusta el ordenamiento alfabético en las tablas "sortable" */ $(function() { var letras = [["áàâäãāăåą", "a"], ["æ", "ae"], ["ćĉčç", "c"], ["ďḑđð", "d"], ["éèêëẽěēĕę", "e"], ["ĝḡğģǥ", "g"], ["ĥḧḩħ", "h"], ["íìÎîïĩīĭįı", "i"], ["ĵ", "j"], ["ķ", "k"], ["ĺľļł", "l"], ["ńňņ", "n"], ["ñ", "n~"], ["óòôöõōŏǫőø", "o"], ["œ", "oe"], ["ŕřŗ", "r"], ["śŝšş", "s"], ["ß", "ss"], ["ťţŧ", "t"], ["úùûüũūŭůųű", "u"], ["ṽ", "v"], ["ŵẅ", "w"], ["ẍ", "x"], ["ýŷÿỹ", "y"], ["źẑžƶ", "z"]]; var hash = {}; for (var i = 0; i < letras.length; i++) { var arr = letras[i][0].split(""); var dest = letras[i][1]; for (var j = 0; j < arr.length; j++) { hash[arr[j]] = dest; } } mw.config.set('tableSorterCollation', hash); gTagMgr(); }); function gTagMgr() { // Create a <noscript> element var noscript = document.createElement('noscript'); // Create an <iframe> element as a child of the <noscript> tag var iframe = document.createElement('iframe'); iframe.src = 'https://www.googletagmanager.com/ns.html?id=GTM-T2DGW5XN'; iframe.height = '0'; iframe.width = '0'; iframe.style.display = 'none'; iframe.style.visibility = 'hidden'; // Append the iframe to the noscript element noscript.appendChild(iframe); // Insert the noscript element immediately after the opening <body> tag document.body.insertAdjacentElement('afterbegin', noscript); }