MediaWiki:Common.js — различия между версиями
Radmir (обсуждение | вклад) |
Radmir (обсуждение | вклад) |
||
Строка 1: | Строка 1: | ||
− | + | var timerId; | |
− | + | ||
+ | function checkWikifyFunction() { | ||
+ | if (typeof Wikify == 'function') { | ||
+ | clearInterval(timerId); | ||
+ | addWikifButton(); | ||
+ | } | ||
+ | } | ||
+ | |||
function addWikifButton() { | function addWikifButton() { | ||
− | var toolbar = document.getElementById('toolbar') | + | var toolbar = document.getElementById('toolbar') |
− | if (!toolbar) return | + | if (!toolbar) return |
− | var i = document.createElement('img') | + | var i = document.createElement('img') |
− | i.src = '//upload.wikimedia.org/wikisource/ru/d/d1/Button-wikifikator.png' | + | i.src = '//upload.wikimedia.org/wikisource/ru/d/d1/Button-wikifikator.png' |
− | i.alt = i.title = 'викификатор' | + | i.alt = i.title = 'викификатор' |
− | i.onclick = Wikify | + | i.onclick = Wikify |
− | i.style.cursor = 'pointer' | + | i.style.cursor = 'pointer' |
− | toolbar.appendChild(i) | + | toolbar.appendChild(i) |
} | } | ||
+ | |||
if (document.URL.indexOf('action=edit') > 0 || document.URL.indexOf('action=submit') > 0) { | if (document.URL.indexOf('action=edit') > 0 || document.URL.indexOf('action=submit') > 0) { | ||
− | + | mw.loader.using( ['mediawiki.legacy.wikibits'], function () { | |
− | + | importScriptURI('//ru.wikipedia.org/w/index.php?title=MediaWiki:Gadget-wikificator.js&action=raw&ctype=text/javascript') | |
+ | } ); | ||
+ | } | ||
+ | |||
+ | if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) { | ||
+ | mw.loader.using( 'user.options', function () { | ||
+ | $( document ).ready(function() { | ||
+ | timerId = setInterval(checkWikifyFunction, 500) | ||
+ | }); | ||
+ | } ); | ||
} | } | ||
− |
Текущая версия на 09:24, 17 мая 2021
var timerId;
function checkWikifyFunction() {
if (typeof Wikify == 'function') {
clearInterval(timerId);
addWikifButton();
}
}
function addWikifButton() {
var toolbar = document.getElementById('toolbar')
if (!toolbar) return
var i = document.createElement('img')
i.src = '//upload.wikimedia.org/wikisource/ru/d/d1/Button-wikifikator.png'
i.alt = i.title = 'викификатор'
i.onclick = Wikify
i.style.cursor = 'pointer'
toolbar.appendChild(i)
}
if (document.URL.indexOf('action=edit') > 0 || document.URL.indexOf('action=submit') > 0) {
mw.loader.using( ['mediawiki.legacy.wikibits'], function () {
importScriptURI('//ru.wikipedia.org/w/index.php?title=MediaWiki:Gadget-wikificator.js&action=raw&ctype=text/javascript')
} );
}
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
mw.loader.using( 'user.options', function () {
$( document ).ready(function() {
timerId = setInterval(checkWikifyFunction, 500)
});
} );
}