MediaWiki:Gadget-refToolbar.js: Różnice pomiędzy wersjami
Z Almanach
mNie podano opisu zmian |
mNie podano opisu zmian |
||
(Nie pokazano 12 pośrednich wersji utworzonych przez tego samego użytkownika) | |||
Linia 1: | Linia 1: | ||
( | /** | ||
* RefToolbar | |||
* | |||
* Adds tools for citing references to the edit toolbar. | |||
* See [[Wikipedia:RefToolbar]] for further documentation. One of two | |||
* possible versions will load (Reftoolbar 1.0 or Reftoolbar 2.0) | |||
* depending on the user preferences (the usebetatoolbar preference). | |||
* | |||
* @see: [[Wikipedia:RefToolbar]] | |||
* @see: [[MediaWiki:RefToolbar.js]] | |||
* @see: [[MediaWiki:RefToolbarConfig.js]] | |||
* @see: [[MediaWiki:RefToolbarLegacy.js]] | |||
* @see: [[MediaWiki:RefToolbarMessages-en.js]] | |||
* @see: [[MediaWiki:RefToolbarMessages-de.js]] | |||
* @see: [[MediaWiki:Gadget-refToolbarBase.js]] | |||
* @author: [[User:Mr.Z-man]] | |||
* @author: [[User:Kaldari]] | |||
*/ | |||
/*jshint browser: true, camelcase: true, curly: true, eqeqeq: true */ | |||
/*global $, mw, importScript */ | |||
( function () { | |||
'use strict'; | 'use strict'; | ||
function initializeRefTools() { | function initializeRefTools() { | ||
// mw.loader.load( '/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript' ); | |||
$.getScript( '/index.php?title=MediaWiki:Gadget-refToolbarBase.js&action=raw&ctype=text/javascript', function() { | |||
mw.loader.using( [ /* 'ext.gadget.refToolbarBase', */ 'ext.wikiEditor' ], function () { | |||
$.getScript( ' | mw.loader.load( '/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript' ); | ||
mw.loader.using( [ 'ext.wikiEditor' ], function () { | |||
mw.loader.load( ' | |||
} ); | } ); | ||
} ); | } ); | ||
window.refToolbarInstalled = true; | |||
} | } | ||
if ( $. | if ( /^(edit|submit)$/.test( mw.config.get( 'wgAction' ) ) ) { | ||
// Double check if user.options is loaded, to prevent errors when copy pasted accross installations | // Double check if user.options is loaded, to prevent errors when copy pasted accross installations | ||
$.when( mw.loader.using( ['user.options'] ), $.ready ). | $.when( mw.loader.using( ['user.options'] ), $.ready ).then( initializeRefTools ); | ||
} | } | ||
}( | }() ); |
Aktualna wersja na dzień 14:02, 1 mar 2021
/**
* RefToolbar
*
* Adds tools for citing references to the edit toolbar.
* See [[Wikipedia:RefToolbar]] for further documentation. One of two
* possible versions will load (Reftoolbar 1.0 or Reftoolbar 2.0)
* depending on the user preferences (the usebetatoolbar preference).
*
* @see: [[Wikipedia:RefToolbar]]
* @see: [[MediaWiki:RefToolbar.js]]
* @see: [[MediaWiki:RefToolbarConfig.js]]
* @see: [[MediaWiki:RefToolbarLegacy.js]]
* @see: [[MediaWiki:RefToolbarMessages-en.js]]
* @see: [[MediaWiki:RefToolbarMessages-de.js]]
* @see: [[MediaWiki:Gadget-refToolbarBase.js]]
* @author: [[User:Mr.Z-man]]
* @author: [[User:Kaldari]]
*/
/*jshint browser: true, camelcase: true, curly: true, eqeqeq: true */
/*global $, mw, importScript */
( function () {
'use strict';
function initializeRefTools() {
// mw.loader.load( '/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript' );
$.getScript( '/index.php?title=MediaWiki:Gadget-refToolbarBase.js&action=raw&ctype=text/javascript', function() {
mw.loader.using( [ /* 'ext.gadget.refToolbarBase', */ 'ext.wikiEditor' ], function () {
mw.loader.load( '/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript' );
} );
} );
window.refToolbarInstalled = true;
}
if ( /^(edit|submit)$/.test( mw.config.get( 'wgAction' ) ) ) {
// Double check if user.options is loaded, to prevent errors when copy pasted accross installations
$.when( mw.loader.using( ['user.options'] ), $.ready ).then( initializeRefTools );
}
}() );