MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 24: | Line 24: | ||
mw.loader.load( '/w/resources/assets/form_prototype.js' ); | mw.loader.load( '/w/resources/assets/form_prototype.js' ); | ||
mw.loader.load('/w/resources/assets/form_prototype.css', 'text/css'); | mw.loader.load('/w/resources/assets/form_prototype.css', 'text/css'); | ||
$(function(){ | $(function(){ | ||
$grid.children('.masonry-item').each(function (j, item) { | function layout() { | ||
$('.masonry').each(function (i, grid) { | |||
var $grid = $(grid); | |||
var rowHeight = parseInt($grid.css('grid-auto-rows')) || 1; | |||
var rowGap = parseInt($grid.css('row-gap')) || 0; | |||
$grid.children('.masonry-item').each(function (j, item) { | |||
var $item = $(item); | |||
var span = Math.ceil(($item.outerHeight() + rowGap) / (rowHeight + rowGap)); | |||
$item.css('grid-row-end', 'span ' + span); | |||
}); | |||
}); | }); | ||
} | |||
layout(); | |||
$('.masonry img').each(function () { | |||
if (this.complete) { | |||
layout(); | |||
} else { | |||
$(this).on('load', layout); | |||
} | |||
}); | }); | ||
$(window).on('resize', layout); | |||
$('#firstHeading').text(function (i, text) { | $('#firstHeading').text(function (i, text) { | ||
console.log(text); | console.log(text); | ||
Latest revision as of 22:03, 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(){
function layout() {
$('.masonry').each(function (i, grid) {
var $grid = $(grid);
var rowHeight = parseInt($grid.css('grid-auto-rows')) || 1;
var rowGap = parseInt($grid.css('row-gap')) || 0;
$grid.children('.masonry-item').each(function (j, item) {
var $item = $(item);
var span = Math.ceil(($item.outerHeight() + rowGap) / (rowHeight + rowGap));
$item.css('grid-row-end', 'span ' + span);
});
});
}
layout();
$('.masonry img').each(function () {
if (this.complete) {
layout();
} else {
$(this).on('load', layout);
}
});
$(window).on('resize', layout);
$('#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');
}
}
});
}
});