MediaWiki:Common.js: различия между версиями

Материал из Space Station 14 Вики
мНет описания правки
мНет описания правки
Строка 9: Строка 9:
buttonTest.classList.add('testButtonJs');
buttonTest.classList.add('testButtonJs');
jsTest.appendChild(buttonTest);
jsTest.appendChild(buttonTest);
const kerisarPicture = document.createElement('img');
kerisarPicture.setAttribute(src, "https://cloud.mail.ru/public/LLmd/Qui7Xbp6g");
jsTest.appendChild(kerisarPicture);
}
}

Версия от 20:59, 18 июня 2024

function kerisar() {
	console.log("Проверка консоли");
	alert("Проверка алерта");
	
	const jsTest = document.getElementById("jsTest");
	console.log("jsTest", jsTest);
	
	const buttonTest = document.createElement('button');
	buttonTest.classList.add('testButtonJs');
	jsTest.appendChild(buttonTest);
	
	const kerisarPicture = document.createElement('img');
	kerisarPicture.setAttribute(src, "https://cloud.mail.ru/public/LLmd/Qui7Xbp6g");
	jsTest.appendChild(kerisarPicture);
	
}

window.onload = function() {
	const currentUrl = window.location.href;
    console.log("currentUrl", currentUrl);
    if (currentUrl.includes("Kerisar")) {
    	kerisar();
    }
};


/*WikiEditor/Викификатор*/
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
        mw.loader.load( '//ru.wikipedia.org/w/index.php?title=MediaWiki:Gadget-wikificator.js&action=raw&ctype=text/javascript' );
}

var customizeToolbar = function() {

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'section': 'advanced',
        'group': 'format',
        'tools': {
                'wikify': {
                        label: 'Викификатор',
                        type: 'button',
                        icon: '//upload.wikimedia.org/wikipedia/commons/0/06/Wikify-toolbutton.png',
                             action: {
                                  type: 'callback',
                                       execute: function(context){
                                              Wikify();
                                       } 
                             }
                }
        }
} );
};
 
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
        mw.loader.using( 'user.options', function () {
                if ( mw.user.options.get('usebetatoolbar') ) {
                        mw.loader.using( 'ext.wikiEditor.toolbar', function () {
                                $(document).ready( customizeToolbar );
                        } );
                }
        } );
}