Difference between revisions of "User:Fbstj/gadget/history-test.js"

m
move to gadget
m (-> widget)
m (move to gadget)
// 2019-04-24 remove the prefix from such links
document.querySelectorAll('[href*="Coppermind:Artists/"]').forEach(function(el){ el.textContent = el.textContent.replace('Coppermind:Artists/', String.fromCodePoint(0x1f150, 0x20) ) })
 
function add_editsection_link(box) {
if (!box.id) return;
// FIXME: what does this do?
const id = box.id.replace(/\.(\d+)/, '%$1')
// generate an edit link
const el = make_editsection_link('/edit/Template:'+ id)
// get the title element
const title = box.querySelector('.title')
title.appendChild(el)
}
 
document.querySelectorAll('.infobox,.navbar').forEach(add_editsection_link)
 
function enable_link(el) { el.style['pointer-events'] = 'auto' }