MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 20: | Line 20: | ||
$v.html(ansi_up.ansi_to_html($v.text().replaceAll("\uFFFD[", "\u001B["))); | $v.html(ansi_up.ansi_to_html($v.text().replaceAll("\uFFFD[", "\u001B["))); | ||
}); | }); | ||
}); | }); | ||
| Line 50: | Line 34: | ||
} | } | ||
}); | }); | ||
$('.dat-toggle').click(function() { | $('.dat-toggle').click(function() { | ||
Revision as of 18:13, June 1, 2026
$.ajaxSetup({
cache: true
});
/*
$.getScript( 'https://cdn.ravenjs.com/3.9.1/raven.min.js', function() {
Raven.config('https://[email protected]/128880').install();
});
*/
$.getScript('https://code.jquery.com/jquery-migrate-1.4.1.js');
$.getScript('https://cdn.jsdelivr.net/npm/[email protected]/ansi_up.min.js', function() {
var ansi_up = new AnsiUp;
var nfo = $(".nfo");
nfo.map(function(k, v) {
var $v = $(v)
$v.html(ansi_up.ansi_to_html($v.text().replaceAll("\uFFFD[", "\u001B[")));
});
});
mw.loader.load( '/w/resources/assets/form_prototype.js' );
mw.loader.load('/w/resources/assets/form_prototype.css', 'text/css');
$(function(){
$('#firstHeading').text(function (i, text) {
console.log(text);
if (text.includes('Video')) {
return text.replace('Video/', '').replace('/', ' · ');
} else {
return text;
}
});
$('.dat-toggle').click(function() {
$('.dat .wiki').toggle();
$('.dat .xml').toggle();
});
$('span.hover-link').hover(function(e){
var classes = $(this).attr("class").split(/\s+/);
for (var i=0; i<classes.length; i++)
{
if (classes[i].indexOf("link-") != -1)
{
if (e.type == "mouseenter")
{
$("span."+classes[i]).addClass("hover");
}
else if (e.type == "mouseleave")
{
$("span."+classes[i]).removeClass("hover");
}
}
}
});
if (typeof $('span.hex-snippet span[title!=""]').qtip !== 'undefined')
{
$('span.hex-snippet span[title!=""]').qtip({
style: {
classes: 'qtip-tipsy'
},
content: {
title: function(event, api) {
return $(this).attr('data-title');
}
}
});
}
});