MediaWiki:Common.js: различия между версиями
Abram (обсуждение | вклад) | NoPH8 (обсуждение | вклад) | ||
Строка 1: | Строка 1: | ||
− | + | //добавляем кнопку викификатора | |
+ | 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://wiki.motofan.ru/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript') | ||
+ | addOnloadHook(addWikifButton) | ||
+ | } |
Версия 07:59, 4 сентября 2011
//добавляем кнопку викификатора 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://wiki.motofan.ru/index.php?title=MediaWiki:Wikificator.js&action=raw&ctype=text/javascript') addOnloadHook(addWikifButton) }