מדיה ויקי:סקריפטים/81.js – הבדלי גרסאות
מראה
תוכן שנמחק תוכן שנוסף
מ בוויקיפדיה העברית דוברים עברית |
|||
שורה 2: | שורה 2: | ||
mw.loader.using( 'mediawiki.util' ).done( function() { |
mw.loader.using( 'mediawiki.util' ).done( function() { |
||
var things = { 'הצג הודעות מערכת' : 'uselang=qqx', |
var things = { 'הצג הודעות מערכת' : 'uselang=qqx', |
||
' |
'מוד בטוח': 'safemode=1', |
||
'debug': 'debug=1', |
'debug': 'debug=1', |
||
'ooui': 'ooui=1' |
'ooui': 'ooui=1' |
גרסה מ־03:47, 30 במאי 2017
// display system-messages names instead of the system messages themselves.
mw.loader.using( 'mediawiki.util' ).done( function() {
var things = { 'הצג הודעות מערכת' : 'uselang=qqx',
'מוד בטוח': 'safemode=1',
'debug': 'debug=1',
'ooui': 'ooui=1'
};
function gothere( e ) {
var key = $( this ).text(),
there = things[key];
e.preventDefault();
var href = window.location.href.replace( /#.*/, '' );
href += ( ( /\?/.test( href ) ? '&' : '?' ) + there );
window.location.href = href;
}
Object.keys( things )
.forEach( function(key) {
$( mw.util.addPortletLink( 'p-cactions', '', key ) ).click( gothere );
} );
} );