Изменения

MediaWiki:Common.js

126 байтов добавлено, 14:55, 29 января 2017
Нет описания правки
var mcw = window.mcw = {};
/* Добавляет дополнительные кнопки в классическую панель редактирования */mw.loader.using( 'mediawiki.user', function() { if ( mw.user.options.get( 'showtoolbar' ) && !mw.user.options.get( 'usebetatoolbar' ) ) { mw.loader.loadusing( '/indexmediawiki.legacy.php?title=wikibits', function() { importScript( 'MediaWiki:Toolbar.js&action=raw&ctype=text/javascript' ); } ); }});
/* Добавляет кнопки вставки часто используемых описаний правки */
/* Keep track of delegated events on dynamic content */
mcw.events = {};
 
/* GA */
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
 
ga('create', 'UA-81726277-2', 'auto');
ga('send', 'pageview');
/* Fired whenever wiki content is added. (#mw-content-text, live preview, load page, etc.) */
* That way the file will be categorised so someone can find a license for the file
*/
function licenseSelectorCheck() {
 
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload' ) {
if ( $( '#wpLicense' ).val() === '' ) {
$( '#wpLicense' ).val( 'Лицензия' i18n.defaultLicense );
}
 
var selector = document.getElementById( "wpLicense" );
var selection = selector.options[selector.selectedIndex].value;
/*mw.loader.using( 'mediawiki.legacyspecial.upload', function() {
var change = setInterval( function() {
if ( licenseSelectorCheck ) {
}, 500 );
} );*/
wgUploadLicenseObj.fetchPreview( selection );
}
}