$(function() {
$('.table-responsive').each(function() {
if ($(this).find('table').width() > $(this).width()) {
$(this).append('
เลื่อนดูตารางด้านข้างได้
');
}
});
// Fail-safe tab switcher for import tabs
$('#importTab button').on('click', function(e) {
e.preventDefault();
// Switch active tab class
$('#importTab button').removeClass('active').attr('aria-selected', 'false');
$(this).addClass('active').attr('aria-selected', 'true');
// Switch active pane class
var target = $(this).attr('data-bs-target');
$('#importTabContent .tab-pane').removeClass('show active');
$(target).addClass('show active');
});
});