MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
$.getScript('https://code.jquery.com/jquery-migrate-1.4.1.js'); | $.getScript('https://code.jquery.com/jquery-migrate-1.4.1.js'); | ||
$.getScript('https://cdn.jsdelivr.net/npm/[email protected]/ansi_up.min.js'); | |||
mw.loader.load( '/w/resources/assets/form_prototype.js' ); | mw.loader.load( '/w/resources/assets/form_prototype.js' ); | ||
Line 52: | Line 54: | ||
}); | }); | ||
} | } | ||
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["))); | |||
}); | |||
}); | }); |
Revision as of 02:37, December 3, 2020
$.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'); mw.loader.load( '/w/resources/assets/form_prototype.js' ); mw.loader.load('/w/resources/assets/form_prototype.css', 'text/css'); $(function(){ $('.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); $('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'); } } }); } 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["))); }); });