MediaWiki:Common.js: verschil tussen versies
Uit LinuxMintNL WiKi
(hide toolbar when presses F11) |
|||
Regel 4: | Regel 4: | ||
if( e == null ) e = event | if( e == null ) e = event | ||
if( testKey( e, 122 ) ) { //F11 | if( testKey( e, 122 ) ) { //F11 | ||
− | appendCSS(' | + | appendCSS('column-content {margin: 0 0 .6em 0;} content {margin: 2.8em 0 0 0;} p-logo, .generated-sidebar, p-lang, p-tb, p-search {display:none;} p-cactions {left: .1em;} footer {display:none;}'); |
return false; | return false; | ||
} | } |
Huidige versie van 26 mrt 2017 om 19:47
/* JavaScript die hier wordt geplaatst heeft invloed op alle pagina's voor alle gebruikers */
/** https://www.mediawiki.org/wiki/Manual:FAQ#How_do_I_hide_the_left_vertical_navigation_toolbar
document.onkeydown = function( e ) {
if( e == null ) e = event
if( testKey( e, 122 ) ) { //F11
appendCSS('column-content {margin: 0 0 .6em 0;} content {margin: 2.8em 0 0 0;} p-logo, .generated-sidebar, p-lang, p-tb, p-search {display:none;} p-cactions {left: .1em;} footer {display:none;}');
return false;
}
}
function testKey( e, intKeyCode ) {
if( window.createPopup )
return e.keyCode == intKeyCode
else
return e.which == intKeyCode
}