summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2018-02-09 08:02:33 +0100
committerYorhel <git@yorhel.nl>2018-02-09 08:02:36 +0100
commit915f715111b9b086c1b4b1fbdacc629fac205948 (patch)
tree14066a1bab3a81345c42d2084048a12f4fca28c9 /lib
parent93b79ef9ebafcfccd0d239ffd06e2b547e209e3d (diff)
Increase VN page staff/cast cutoff thing to 200px
https://vndb.org/t950.410
Diffstat (limited to 'lib')
-rw-r--r--lib/VNDB/Handler/VNPage.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VNDB/Handler/VNPage.pm b/lib/VNDB/Handler/VNPage.pm
index 44771c7c..51f5c6b2 100644
--- a/lib/VNDB/Handler/VNPage.pm
+++ b/lib/VNDB/Handler/VNPage.pm
@@ -983,7 +983,7 @@ sub _charsum {
}
}
- div class => 'mainbox charsum summarize';
+ div class => 'mainbox charsum summarize', 'data-summarize-height' => 200;
$self->charOps(0) if $has_spoilers;
h1 'Character summary';
div class => 'charsum_list';
@@ -1016,7 +1016,7 @@ sub _staff {
my ($self, $v) = @_;
return if !@{$v->{credits}};
- div class => 'mainbox staff summarize', 'data-summarize-height' => 100, id => 'staff';
+ div class => 'mainbox staff summarize', 'data-summarize-height' => 200, id => 'staff';
h1 'Staff';
for my $r (keys %{$self->{staff_roles}}) {
my @s = grep $_->{role} eq $r, @{$v->{credits}};