- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Changes
Jump to navigation
Jump to search
Line 128:
Line 128:
− console.log(property_base_colspan)
− console.log(property_states.length)
− console.log(property_base_colspan - property_states.length + 2)
no edit summary
//Update colspan for custom rows.
//Update colspan for custom rows.
if (property_filter) {
if (property_filter) {
if (selected === "none") {
if (selected === "none") {
$(".custom-row." + target).attr("colSpan", property_base_colspan);
$(".custom-row." + target).attr("colSpan", property_base_colspan);
} else {
} else {
$(".custom-row." + target).attr("colSpan", property_base_colspan - property_states.length + 2);
$(".custom-row." + target).attr("colSpan", property_base_colspan - property_states.length + 2);
}
}