MediaWiki
Gadget-breadcrumbs.js
From Dogcraft Wiki
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 8: | Line 8: | ||
});*/ | });*/ | ||
if ( mw.config.get('wgIsArticle')) { | if ( mw.config.get('wgIsArticle') && (mw.config.get('wgNamespaceNumber') == 4 || mw.config.get('wgNamespaceNumber') == 0)) { | ||
var namespace = mw.config.get('wgFormattedNamespaces')[mw.config.get('wgNamespaceNumber')]; | //var namespace = mw.config.get('wgFormattedNamespaces')[mw.config.get('wgNamespaceNumber')]; | ||
var serverInfo = ""; | var serverInfo = "", | ||
siteContent = ""; | |||
if (mw.config.get('wgCategories').includes('Site Content')) { | |||
siteContent = 'Site Content > '; | |||
} | |||
if (mw.config.get('wgCategories').includes('Server Information')) { | if (mw.config.get('wgCategories').includes('Server Information')) { | ||
serverInfo = 'Server Information > '; | serverInfo = 'Server Information > '; | ||
Line 23: | Line 29: | ||
} | } | ||
$('#breadcrumbs-test').text('' + | $('#breadcrumbs-test').text('' + siteContent + serverInfo + worldCat + ' > ' + mw.config.get( 'wgTitle' )); | ||
} | } | ||
}); | }); |
Revision as of 14:38, 3 July 2021
$(document).ready(function() {
/*$("#alertbutton-domino").click(function(){
mw.messages.set({'sandbox-test': 'Testing'});
var wiki_sandbox_obj = new mw.Message( mw.messages, 'sandbox-test' );
mw.log( wiki_sandbox_obj.text() );
mw.notify( mw.message( 'sandbox-test' ) );
});*/
if ( mw.config.get('wgIsArticle') && (mw.config.get('wgNamespaceNumber') == 4 || mw.config.get('wgNamespaceNumber') == 0)) {
//var namespace = mw.config.get('wgFormattedNamespaces')[mw.config.get('wgNamespaceNumber')];
var serverInfo = "",
siteContent = "";
if (mw.config.get('wgCategories').includes('Site Content')) {
siteContent = 'Site Content > ';
}
if (mw.config.get('wgCategories').includes('Server Information')) {
serverInfo = 'Server Information > ';
}
var worldCat = '';
for (var i = 0; i < mw.config.get('wgCategories').length; i++) {
if ( mw.config.get('wgCategories')[i].indexOf('Survival ') > -1) {
worldCat = mw.config.get('wgCategories')[i] + '';
break;
}
}
$('#breadcrumbs-test').text('' + siteContent + serverInfo + worldCat + ' > ' + mw.config.get( 'wgTitle' ));
}
});
This page was last modified on 3 July 2021, at 14:38. (3 months ago)