MediaWiki:Common.js: различия между версиями
Перейти к навигации
Перейти к поиску
SAS (обсуждение | вклад) |
|||
Строка 1: | Строка 1: | ||
− | / | + | function addWikifButton() { |
− | + | var toolbar = document.getElementById('toolbar') | |
− | importScriptURI('/ | + | if (!toolbar) return |
+ | var i = document.createElement('img') | ||
+ | i.src = 'http://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 (wgAction == 'edit' || wgAction == 'submit') { | ||
+ | importScriptURI('http://ru.wikipedia.org/w/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript') | ||
+ | addOnloadHook(addWikifButton) | ||
+ | } |
Версия 15:44, 4 июня 2012
function addWikifButton() {
var toolbar = document.getElementById('toolbar')
if (!toolbar) return
var i = document.createElement('img')
i.src = 'http://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 (wgAction == 'edit' || wgAction == 'submit') {
importScriptURI('http://ru.wikipedia.org/w/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript')
addOnloadHook(addWikifButton)
}