MediaWiki:Wikia.js: Difference between revisions
From Screamer Wiki
imported>UncoveredAgent200 No edit summary |
m (Protected "MediaWiki:Wikia.js" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))) |
||
(26 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
/ | $("#iframeloader-CoinsCP").replaceWith('<iframe src=https://www.bitchute.com/embed/nhMsbfwBolBA/ WIDTH=480 HEIGHT=360>'); | ||
$("#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>'); | |||
/* BitChute Player (adapted from YouTube player .js) */ | |||
mw.hook('wikipage.content').add(function($content) { | |||
$content.find('.bitchuteplayer:not(.loaded)').each(function() { | |||
if ( | 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'); | |||
}); | |||
}); | |||
Latest revision as of 07:47, 12 January 2022
$("#iframeloader-CoinsCP").replaceWith('<iframe src=https://www.bitchute.com/embed/nhMsbfwBolBA/ WIDTH=480 HEIGHT=360>');
$("#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>');
/* 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');
});
});