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

From The Coppermind
Jump to navigation Jump to search
m (retry by doing the combinator manually)
m (oops)
Line 24: Line 24:
 
if (!el) { // check first child of #mw-content-text is a notice
 
if (!el) { // check first child of #mw-content-text is a notice
 
const txt = document.querySelector('#mw-content-text')
 
const txt = document.querySelector('#mw-content-text')
if (txt.firstElementChild.contains('notice'))
+
if (txt.firstElementChild.classList.contains('notice'))
 
el = txt.firstElementChild
 
el = txt.firstElementChild
 
}
 
}

Revision as of 20:25, 9 July 2018

/* Add edit link to templates */
$(function () {

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' }

document.querySelectorAll('.patrollink').forEach(enable_link)

// move notices above indicators
while (true) {
  var el = document.querySelector('.infobox+.notice')
  if (!el) { // check first child of #mw-content-text is a notice
    const txt = document.querySelector('#mw-content-text')
    if (txt.firstElementChild.classList.contains('notice'))
      el = txt.firstElementChild
  }
  if (!el) break
  const ind = document.querySelector('.mw-indicators')
  ind.parentElement.insertBefore(el, ind)
}

})