MediaWiki:Common.js: Difference between revisions
From Screamer Wiki
No edit summary |
No edit summary |
||
Line 38: | Line 38: | ||
}); | }); | ||
}); | }); | ||
$('#p-logo').clone().addClass('mw-no-invert').insertAfter('#p-logo').css({position:'absolute',top:'0',height:'113px',overflow:'hidden'}) |
Revision as of 02:15, 20 August 2019
/* Any JavaScript here will be loaded for all users on every page load. */
$("#iframeloader-GoodIntentions").replaceWith('<iframe src=https://www.bitchute.com/embed/UNBNbGMM1B1q/ WIDTH=480 HEIGHT=360>');
$("#iframeloader-ABabyToy").replaceWith('<iframe src=https://www.bitchute.com/embed/7ONLxUCacy4c/ WIDTH=480 HEIGHT=360>');
$("#iframeloader-JingleBellsReversed").replaceWith('<iframe src=https://www.bitchute.com/embed/gyxTQDvlDDay/ WIDTH=480 HEIGHT=360>');
$("#iframeloader-ChrisTheJackOLantern").replaceWith('<iframe src=https://www.bitchute.com/embed/BzK2JS21Ng5l/ WIDTH=480 HEIGHT=360>');
$("#Attributions").replaceWith('<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.');
$("#iframeloader-HitTheDot").replaceWith('<iframe src=https://www.bitchute.com/embed/AeyDEgrX8oAV/ WIDTH=480 HEIGHT=360>');
/* YouTube Embed /*
$ ("#iframeloader-KfeeBehindScenes").replaceWith('<iframe width="480" height="360" src="https://www.youtube.com/embed/lnnxURHT2Ak" frameborder="0" allow="encrypted-media; picture-in-picture" allowfullscreen>')
/* BitChute Player (adapted from YouTube player .js) */
mw.hook('wikipage.content').add(function($content) {
$content.find('.bitchuteplayer:not(.loaded)').each(function() {
var $this = $(this),
data = $this.data(),
uri = new mw.Uri('https://www.bitchute.com/embed/'),
id = String(data.id || '').trim();
if (id === '') {
console.warn('[BitChute Player] Video ID is not defined.');
return;
}
uri.path += id;
$this.html(
$('<iframe>', {
width: String(data.width || '').trim(),
height: String(data.height || '').trim(),
src: uri.toString(),
})
).addClass('loaded');
});
});
$('#p-logo').clone().addClass('mw-no-invert').insertAfter('#p-logo').css({position:'absolute',top:'0',height:'113px',overflow:'hidden'})