MediaWiki:Gadget-refToolbar.js: Różnice pomiędzy wersjami
Z Almanach
(Utworzono nową stronę "/** * RefToolbar * * Adds tools for citing references to the edit toolbar. * See Wikipedia:RefToolbar for further documentation. One of * three possible version...") |
mNie podano opisu zmian |
||
Linia 1: | Linia 1: | ||
( function ( mw, $ ) { | ( function ( mw, $ ) { | ||
'use strict'; | 'use strict'; | ||
function initializeRefTools() { | function initializeRefTools() { | ||
if ( window.refToolbarInstalled || $( '#wpTextbox1[readonly]' ).length ){ | if( window.refToolbarInstalled || $( '#wpTextbox1[readonly]' ).length ){ | ||
return; | return; | ||
} | } | ||
if ( mw.user.options.get( 'usebetatoolbar' ) ) { | if ( mw.user.options.get( 'usebetatoolbar' ) ) { | ||
// Enhanced editing toolbar is on. Going to load RefToolbar 2. | // Enhanced editing toolbar is on. Going to load RefToolbar 2.0. | ||
$.getScript( '//en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-refToolbarBase.js&action=raw&ctype=text/javascript', function() { | |||
mw.loader.using( [ 'ext.wikiEditor' ], function () { | |||
mw.loader.load( '//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript' ); | |||
} ); | |||
} ); | } ); | ||
} else if ( mw.user.options.get( 'showtoolbar' ) ) { | } else if ( mw.user.options.get( 'showtoolbar' ) ) { | ||
// Enhanced editing toolbar is off. Loading RefToolbar 1.0. (legacy) | // Enhanced editing toolbar is off. Loading RefToolbar 1.0. (legacy) | ||
mw.loader.load( '//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbarLegacy.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' ); | |||
} else { | } else { | ||
return; | return; | ||
Linia 53: | Linia 20: | ||
window.refToolbarInstalled = true; | window.refToolbarInstalled = true; | ||
} | } | ||
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) { | if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) { | ||
$( initializeRefTools ); | // Double check if user.options is loaded, to prevent errors when copy pasted accross installations | ||
$.when( mw.loader.using( ['user.options'] ), $.ready ).done( initializeRefTools ); | |||
} | } | ||
}( mediaWiki, jQuery ) ); | }( mediaWiki, jQuery ) ); |
Wersja z 12:57, 27 sie 2020
( function ( mw, $ ) {
'use strict';
function initializeRefTools() {
if( window.refToolbarInstalled || $( '#wpTextbox1[readonly]' ).length ){
return;
}
if ( mw.user.options.get( 'usebetatoolbar' ) ) {
// Enhanced editing toolbar is on. Going to load RefToolbar 2.0.
$.getScript( '//en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-refToolbarBase.js&action=raw&ctype=text/javascript', function() {
mw.loader.using( [ 'ext.wikiEditor' ], function () {
mw.loader.load( '//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript' );
} );
} );
} else if ( mw.user.options.get( 'showtoolbar' ) ) {
// Enhanced editing toolbar is off. Loading RefToolbar 1.0. (legacy)
mw.loader.load( '//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbarLegacy.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' );
} else {
return;
}
window.refToolbarInstalled = true;
}
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
// Double check if user.options is loaded, to prevent errors when copy pasted accross installations
$.when( mw.loader.using( ['user.options'] ), $.ready ).done( initializeRefTools );
}
}( mediaWiki, jQuery ) );