Diferencia entre revisiones de «MediaWiki:Gadget-refToolbar.js»
De Bioeticawiki
(Página creada con «/** RefToolbar ************************************************ * * Description: Adds tools for citing references to the edit toolbar. * See [[:en:Wikipedia:RefToolba...») |
|||
Línea 5: | Línea 5: | ||
* | * | ||
* To disable this script, add <code>refToolbarInstalled = 'bypass';<code> to [[Special:Mypage/vector.js]]. | * To disable this script, add <code>refToolbarInstalled = 'bypass';<code> to [[Special:Mypage/vector.js]]. | ||
*/ | */ | ||
( function ( mw, $ ) { | |||
'use strict'; | |||
function initializeRefTools() { | 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( '//es.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 ) ); |
Revisión actual del 12:34 26 oct 2018
/** RefToolbar ************************************************
*
* Description: Adds tools for citing references to the edit toolbar.
* See [[:en:Wikipedia:RefToolbar 2.0]] for further documentation.
*
* To disable this script, add <code>refToolbarInstalled = 'bypass';<code> to [[Special:Mypage/vector.js]].
*/
( 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( '//es.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 ) );