From aa099fca153bc8d2961081b992533b22572db828 Mon Sep 17 00:00:00 2001 From: rulingcom Date: Fri, 4 Feb 2022 04:38:10 +0000 Subject: [PATCH] update template --- modules/ad_banner/_ad_banner_widget2_video.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ad_banner/_ad_banner_widget2_video.html.erb b/modules/ad_banner/_ad_banner_widget2_video.html.erb index 6601e53..18b3174 100644 --- a/modules/ad_banner/_ad_banner_widget2_video.html.erb +++ b/modules/ad_banner/_ad_banner_widget2_video.html.erb @@ -61,10 +61,10 @@ var $video = $self.find('video'); if ($self.hasClass('have-audio')){ $self.removeClass('have-audio'); - $(this).find('i.fas').attr('class','fas fa-volume-mute'); + $(this).find('i.fas').attr('class','fas fa-volume-mute').attr('title','<%= I18n.t("ad_banner.unmuted") %>'); }else{ $self.addClass('have-audio'); - $(this).find('i.fas').attr('class','fas fa-volume-up'); + $(this).find('i.fas').attr('class','fas fa-volume-up').attr('title','<%= I18n.t("ad_banner.muted") %>'); } if ($video.length>0){ $self.jPlayer("mute", !$self.data().jPlayer.options.muted);