MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
(43 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
$(document). | $.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["))); | |||
}); | |||
}); | |||
$.getScript( 'https://unpkg.com/@popperjs/core@2', function() { | |||
$.getScript( 'https://unpkg.com/tippy.js@6', function() { | |||
tippy('[data-tippy-content]'); | |||
tippy('[data-template]', { | |||
content: function(reference) { | |||
const id = reference.getAttribute('data-template'); | |||
const template = document.getElementById(id); | |||
return template.innerHTML; | |||
}, | |||
allowHTML: true, | |||
theme: 'light', | |||
}); | |||
}); | |||
}); | |||
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; | |||
} | |||
}); | |||
$('.redditlink').append('<script type="text/javascript" src="http://www.reddit.com/buttonlite.js?i=5"></script>'); | |||
setTimeout(function(){ | |||
var html = $('span.reddit_button').html(); | |||
$('.redditlink').replaceWith(html); | |||
$('span.reddit_button').replaceWith(''); | |||
},1000); | |||
$('.dat-toggle').click(function() { | |||
$('.dat .wiki').toggle(); | |||
$('.dat .xml').toggle(); | |||
}); | |||
$('span.hover-link').hover(function(e){ | $('span.hover-link').hover(function(e){ | ||
var classes = $(this).attr("class").split(/\s+/); | var classes = $(this).attr("class").split(/\s+/); | ||
Line 19: | Line 81: | ||
}); | }); | ||
$('span.hex-snippet span[title!=""]').qtip({ | 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'); | |||
} | |||
} | |||
}); | |||
} | |||
}); | }); |
Latest revision as of 06:50, March 28, 2023
$.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["))); }); }); $.getScript( 'https://unpkg.com/@popperjs/core@2', function() { $.getScript( 'https://unpkg.com/tippy.js@6', function() { tippy('[data-tippy-content]'); tippy('[data-template]', { content: function(reference) { const id = reference.getAttribute('data-template'); const template = document.getElementById(id); return template.innerHTML; }, allowHTML: true, theme: 'light', }); }); }); 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; } }); $('.redditlink').append('<script type="text/javascript" src="http://www.reddit.com/buttonlite.js?i=5"></script>'); setTimeout(function(){ var html = $('span.reddit_button').html(); $('.redditlink').replaceWith(html); $('span.reddit_button').replaceWith(''); },1000); $('.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'); } } }); } });