MediaWiki:Common.js — различия между версиями
Энциклопедия архангельской музыки
Atorero (обсуждение | вклад) (Новая страница: «/* Размещённый здесь JavaScript код будет загружаться всем пользователям при обращении к каждо...») |
Atorero (обсуждение | вклад) |
||
Строка 1: | Строка 1: | ||
− | |||
function addWikifButton() { | 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 ( | + | if (document.URL.indexOf('action=edit') > 0 || document.URL.indexOf('action=submit') > 0) { |
− | + | document.write('<script type="text/javascript" src="http://ru.wikipedia.org/w/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript"><\/script>') | |
− | + | addOnloadHook(addWikifButton) | |
} | } |
Версия 16:46, 24 июня 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 (document.URL.indexOf('action=edit') > 0 || document.URL.indexOf('action=submit') > 0) { document.write('<script type="text/javascript" src="http://ru.wikipedia.org/w/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript"><\/script>') addOnloadHook(addWikifButton) }