MediaWiki:Common.js: Difference between revisions
From Obsidian Scheduler
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
function ModifySidebar( action, section, | function ModifySidebar( action, section, element) { | ||
try { | try { | ||
switch ( section ) { | switch ( section ) { | ||
| Line 22: | Line 22: | ||
var liNode = document.createElement( 'li' ); | var liNode = document.createElement( 'li' ); | ||
liNode.appendChild( element); | |||
liNode.appendChild( | |||
node.appendChild( liNode ); | node.appendChild( liNode ); | ||
} | } | ||
| Line 38: | Line 36: | ||
function CustomizeModificationsOfSidebar() { | function CustomizeModificationsOfSidebar() { | ||
var | var topDiv = document.createElement('div'); | ||
ModifySidebar( 'add', 'toolbox', | topDiv.innerHTML = '<div style="text-align: center; white-space: nowrap;"> \ | ||
<script type="text/javascript"> \ | |||
var bccbId = Math.random(); document.write(unescape(''%3Cdiv id='' + bccbId + ''%3E%3C/div%3E'')); \ | |||
window._bcvma = window._bcvma || []; \ | |||
_bcvma.push(["setAccountID", "420408690637749684"]); \ | |||
_bcvma.push(["addStatic", {type: "chat", bdid: "7132511324762972080", id: bccbId}]); \ | |||
var bcLoad = function(){ \ | |||
if(window.bcLoaded) return; window.bcLoaded = true; \ | |||
var vms = document.createElement("script"); vms.type = "text/javascript"; vms.async = true; \ | |||
vms.src = "https://vmss.boldchat.com/aid/420408690637749684/bc.vms4/vms.js"; \ | |||
var s = document.getElementsByTagName(''script'')[0]; s.parentNode.insertBefore(vms, s); \ | |||
}; \ | |||
if(window.pageViewer && pageViewer.load) pageViewer.load(); \ | |||
else if(document.readyState=="complete") bcLoad(); \ | |||
else if(window.addEventListener) window.addEventListener(''load'', bcLoad, false); \ | |||
else window.attachEvent('onload', bcLoad); \ | |||
</script> \ | |||
</div> \ | |||
<!-- /BoldChat Live Chat Button HTML v5.00 -->'; | |||
ModifySidebar( 'add', 'toolbox', topDiv ); | |||
} | } | ||
jQuery( CustomizeModificationsOfSidebar ); | jQuery( CustomizeModificationsOfSidebar ); | ||
Revision as of 16:34, 30 March 2021
function ModifySidebar( action, section, element) {
try {
switch ( section ) {
case 'languages':
var target = 'p-lang';
break;
case 'toolbox':
var target = 'p-tb';
break;
case 'navigation':
var target = 'p-navigation';
break;
default:
var target = 'p-' + section;
break;
}
if ( action == 'add' ) {
var node = document.getElementById( target )
.getElementsByTagName( 'div' )[0]
.getElementsByTagName( 'ul' )[0];
var liNode = document.createElement( 'li' );
liNode.appendChild( element);
node.appendChild( liNode );
}
} catch( e ) {
// let's just ignore what's happened
return;
}
}
function CustomizeModificationsOfSidebar() {
var topDiv = document.createElement('div');
topDiv.innerHTML = '<div style="text-align: center; white-space: nowrap;"> \
<script type="text/javascript"> \
var bccbId = Math.random(); document.write(unescape(''%3Cdiv id='' + bccbId + ''%3E%3C/div%3E'')); \
window._bcvma = window._bcvma || []; \
_bcvma.push(["setAccountID", "420408690637749684"]); \
_bcvma.push(["addStatic", {type: "chat", bdid: "7132511324762972080", id: bccbId}]); \
var bcLoad = function(){ \
if(window.bcLoaded) return; window.bcLoaded = true; \
var vms = document.createElement("script"); vms.type = "text/javascript"; vms.async = true; \
vms.src = "https://vmss.boldchat.com/aid/420408690637749684/bc.vms4/vms.js"; \
var s = document.getElementsByTagName(''script'')[0]; s.parentNode.insertBefore(vms, s); \
}; \
if(window.pageViewer && pageViewer.load) pageViewer.load(); \
else if(document.readyState=="complete") bcLoad(); \
else if(window.addEventListener) window.addEventListener(''load'', bcLoad, false); \
else window.attachEvent('onload', bcLoad); \
</script> \
</div> \
<!-- /BoldChat Live Chat Button HTML v5.00 -->';
ModifySidebar( 'add', 'toolbox', topDiv );
}
jQuery( CustomizeModificationsOfSidebar );