summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTigerShark <tieskey@yahoo.com.ar>2018-01-10 12:05:19 -0300
committerYorhel <git@yorhel.nl>2018-01-12 13:20:18 +0100
commit5c31c5f1629709ce337626cd0dfa216adf3828a4 (patch)
treefdf4e99a9cbffd52b116cf6ffc990695e7846ef3 /lib
parent451375a72e0937791cf6a4dcb26e83f386a6afbd (diff)
Truly unique names for release icons and pushed those classes to the inmediate container <abbr>.
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 12ba0ec9..44771c7c 100644
--- a/lib/VNDB/Handler/VNPage.pm
+++ b/lib/VNDB/Handler/VNPage.pm
@@ -837,8 +837,8 @@ sub _releases {
# Creates an small sized img inside an abbr tag. Used for per-release information icons.
sub _release_icon {
my($class, $title, $img) = @_;
- abbr class => 'release_icons_container', title => $title;
- img src=> "$TUWF::OBJ->{url_static}/f/$img.svg", class => "release_icons $class", alt => $title;
+ abbr class => "release_icons_container release_icon_$class", title => $title;
+ img src=> "$TUWF::OBJ->{url_static}/f/$img.svg", class => "release_icons", alt => $title;
end;
}