Участник:EvilCat/monobook.js — различия между версиями
м (переименовал «Участник:EvilCat/common.js» в «Участник:EvilCat/monobook.js»: может, Викия не даёт использовать личные общие скирпты?) |
|||
Строка 1: | Строка 1: | ||
− | function | + | function addGodButton() { |
var toolbar = document.getElementById('toolbar') | var toolbar = document.getElementById('toolbar') | ||
if (!toolbar) return | if (!toolbar) return | ||
Строка 8: | Строка 8: | ||
toolbar.appendChild(i) | toolbar.appendChild(i) | ||
} | } | ||
+ | addOnloadHook(addGodButton) | ||
+ | |||
function god () | function god () |
Версия 11:36, 5 марта 2012
function addGodButton() { var toolbar = document.getElementById('toolbar') if (!toolbar) return var i = document.createElement('span') i.innerHTML='[Б]' i.onclick = god i.style.cursor = 'pointer' toolbar.appendChild(i) } addOnloadHook(addGodButton) function god () { alert('test') }