Panel/themes/Obsidian/modules/gamemanager/game_monitor.js
2026-05-03 23:31:07 +00:00

10 lines
No EOL
268 B
JavaScript

jQuery(function($){
var width = $(window).width();
$(window).on('resize', function(){
if($(this).width() <= 890){
$(".expand-child > td:nth-child(1)").attr('colspan', '3');
}else {
$(".expand-child > td:nth-child(1)").attr('colspan', '4');
}
});
});