/* JWB */
mw.loader.load('//en.wikipedia.org/w/index.php?title=User:Joeytje50/JWB.js/load.js&action=raw&ctype=text/javascript');
// Səhifənin aşağı və yuxarısına bir kliklə çıxmaq üçün ox düymələri
const navsContainer = document.createElement('div'),
goUp = document.createElement('button'),
goDown = document.createElement('button')
goUp.innerHTML = '↑'
goDown.innerHTML = '↓'
navsContainer.appendChild(goUp)
navsContainer.appendChild(goDown)
navsContainer.style = 'position: fixed; right: 8px; bottom: 8px'
goUp.style = goDown.style = 'display: block; padding: 4px; background: white; font-size: 16px; border: 1px solid black'
goUp.onclick = () => $('html, body').animate({ scrollTop: '0px' })
goDown.onclick = () => $('html, body').animate({ scrollTop: `${document.body.scrollHeight}px` })
document.body.appendChild(navsContainer)
// massRollback - [[en:User:Writ Keeper/Scripts/massRollback.js]]
mw.loader.load('//en.wikipedia.org/w/index.php?title=User:Writ Keeper/Scripts/massRollback.js&action=raw&ctype=text/javascript');