Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* All JavaScript here will be loaded for users of the Cosmos skin */
(function() {
function removePrefixFromCustomNamespaces() {
var nsNumber = mw.config.get('wgNamespaceNumber');
if (nsNumber < 3000) {
return;
}
var nsName = mw.config.get('wgCanonicalNamespace').split('_').join(' ');
var $cosmosTitleText = $('#cosmos-title-text');
var prefixedTitle = $cosmosTitleText.text();
var replacementText = nsNumber % 2 === 0 ? '' : 'Talk:';
var unprefixedTitle = prefixedTitle.replace(`${nsName}:`, replacementText);
$('#cosmos-title-text').text(unprefixedTitle);
}
removePrefixFromCustomNamespaces();
}());