MediaWiki:Common.js: различия между версиями
Перейти к навигации
Перейти к поиску
Строка 1: | Строка 1: | ||
− | function addWikifButton() { | + | /* Размещённый здесь JavaScript код будет загружаться всем пользователям при обращении к каждой странице */ |
− | + | ||
− | + | function addWikifButton(){ | |
− | + | var toolbar = document.getElementById('toolbar') | |
− | + | var textbox = document.getElementById('wpTextbox1') | |
− | + | if (!textbox || !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') { | + | if (wgAction == 'edit' || wgAction == 'submit'){ |
− | + | document.write('<script type="text/javascript" src="http://www.old-games.ru/wiki/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript"><\/script>') | |
− | + | addOnloadHook(addWikifButton) | |
} | } |
Версия 15:48, 4 июня 2012
/* Размещённый здесь JavaScript код будет загружаться всем пользователям при обращении к каждой странице */
function addWikifButton(){
var toolbar = document.getElementById('toolbar')
var textbox = document.getElementById('wpTextbox1')
if (!textbox || !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'){
document.write('<script type="text/javascript" src="http://www.old-games.ru/wiki/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript"><\/script>')
addOnloadHook(addWikifButton)
}