User:Vector Potential/monobook.js

// User:Vector Potential/popups.js

importScript('User:Vector Potential/popups.js');

$(function(){

/* Fix the title of the history page */

if(wgAction=='history'){

document.title=wgPageName.replace(/_/g,' ')+' - Wikipedia History';

var h=document.getElementsByTagName('H1');

if(h.length){

h=h[0];

while(h.firstChild) h.removeChild(h.firstChild);

h.appendChild(document.createTextNode(wgPageName.replace(/_/g,' ')));

}

}

});