MediaWiki:Common.js: Difference between revisions

Tweak to support titles with colon characters
(Replaced return with break)
(Tweak to support titles with colon characters)
 
Line 13:
// If the display title does not include namespace, we're done
if (displayTitle.indexOf(':') === -1) break add_badge;
console.log("inserting badge");
 
// Replace the page heading with just the page name
var displayPagenamedisplayTitleSplit = displayTitle.split(':')[1]; // split title on : chars
displayTitleSplit.splice(0, 1); // remove namespace from split title
firstHeading.innerHTML = displayPagename;
firstHeading.innerHTML = displayTitleSplit.join(':'); // re-join and set title
 
// Insert the namespace badge before the title