Difference between revisions of "MediaWiki:Gadget-refToolbar.js"
From Civicwiki
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
( function ( mw, $ ) { | ( function ( mw, $ ) { | ||
'use strict'; | 'use strict'; | ||
Line 31: | Line 9: | ||
if ( mw.user.options.get( 'usebetatoolbar-cgd' ) ) { | if ( mw.user.options.get( 'usebetatoolbar-cgd' ) ) { | ||
// Dialogs are on. Loading 2.0b. (standard) | // Dialogs are on. Loading 2.0b. (standard) | ||
− | // | + | $.getScript( '//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbarBase.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400', function() { |
− | + | // Enhanced editing toolbar is on with dialogs. Load standard refToolbar. | |
− | + | mw.loader.using( 'ext.wikiEditor.toolbar', function () { | |
− | + | mw.loader.load( '//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' ); | |
− | + | } ); | |
− | |||
− | |||
} ); | } ); | ||
} else { | } else { | ||
// Dialogs are off. Loading 2.0a. | // Dialogs are off. Loading 2.0a. | ||
mw.loader.using( 'ext.wikiEditor.toolbar', function () { | mw.loader.using( 'ext.wikiEditor.toolbar', function () { | ||
− | + | mw.loader.load( '//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbarNoDialogs.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' ); | |
} ); | } ); | ||
} | } | ||
} else { | } else { | ||
// 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' ); | |
} | } | ||
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 ); | $( initializeRefTools ); | ||
} | } | ||
− | |||
}( mediaWiki, jQuery ) ); | }( mediaWiki, jQuery ) ); |
Revision as of 12:36, 3 June 2014
( function ( mw, $ ) { 'use strict'; function initializeRefTools() { if( !mw.user.options.get( 'showtoolbar' ) || window.refToolbarInstalled || $( '#wpTextbox1[readonly]' ).length ){ return; } if ( mw.user.options.get( 'usebetatoolbar' ) ) { // Enhanced editing toolbar is on. Going to load RefToolbar 2.0a or 2.0b. if ( mw.user.options.get( 'usebetatoolbar-cgd' ) ) { // Dialogs are on. Loading 2.0b. (standard) $.getScript( '//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbarBase.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400', function() { // Enhanced editing toolbar is on with dialogs. Load standard refToolbar. mw.loader.using( 'ext.wikiEditor.toolbar', function () { mw.loader.load( '//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbar.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' ); } ); } ); } else { // Dialogs are off. Loading 2.0a. mw.loader.using( 'ext.wikiEditor.toolbar', function () { mw.loader.load( '//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbarNoDialogs.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' ); } ); } } else { // 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' ); } window.refToolbarInstalled = true; } if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) { $( initializeRefTools ); } }( mediaWiki, jQuery ) );