The English encyclopedia Allmultimedia.org will be launched in two phases.
The final launch of the Allmultimedia.org will take place on February 24, 2026
(shortly after the 2026 Winter Olympics).
The final launch of the Allmultimedia.org will take place on February 24, 2026
(shortly after the 2026 Winter Olympics).
MediaWiki:Gadget-removeAccessKeys.js
Z Multimediaexpo.cz
Poznámka: Po uložení musíte smazat cache vašeho prohlížeče, jinak změny neuvidíte: Mozilla / Firefox: Ctrl-Shift-R, IE: Ctrl-F5, Safari: Cmd-Shift-R, Konqueror: F5.
// ********************************************************************** // ** ***WARNING GLOBAL GADGET FILE*** ** // ** changes to this file affect many users. ** // ** please discuss on the talk page before editing ** // ** ** // ********************************************************************** // Imported from version as of: 2007-04-17T22:22:27 //Deactivating access keys, see [[Wikipedia talk:WikiProject User scripts/Scripts/removeAccessKeys|talk page]] addOnloadHook(function(){ var columnOne = document.getElementById('column-one'); if (!columnOne) columnOne = document.getElementById('mw_portlets'); if (!columnOne) return; removeKeys(columnOne.getElementsByTagName('a')); var cactions = document.getElementById('p-cactions'); if(cactions) removeKeys(cactions.getElementsByTagName('a')); var personal = document.getElementById('p-personal'); if(personal) removeKeys(personal.getElementsByTagName('a')); removeKeys(document.getElementsByTagName('input')); removeKeys(document.getElementsByTagName('label')); }) function removeKeys(nodeList){ var el; for (var i = 0; i < nodeList.length; i++) { el = nodeList[i]; if (!el.accessKey) continue; if (!window.removeAccessKeys || removeAccessKeys.indexOf(el.accessKey) >= 0) { el.accessKey = ''; //el.setAttribute('accessKey', ''); if (el.title) el.title = el.title.replace(tooltipAccessKeyRegexp, ''); } } } //
