MediaWiki:Common.js — различия между версиями
(Обновление викификатора) |
м |
||
Строка 1: | Строка 1: | ||
− | + | 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 (mw.config.get("wgAction") == 'edit' || mw.config.get("wgAction") == 'submit') { | |
− | + | importScriptURI('//ru.wikipedia.org/w/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript') | |
− | + | addOnloadHook(addWikifButton) | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | if | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } |
Версия 21:08, 16 августа 2021
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 (mw.config.get("wgAction") == 'edit' || mw.config.get("wgAction") == 'submit') {
importScriptURI('//ru.wikipedia.org/w/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript')
addOnloadHook(addWikifButton)
}