Skip to content
Snippets Groups Projects
Commit 581e727a authored by Kevin Paxman's avatar Kevin Paxman Committed by Eric Bremner
Browse files

ISTWCMS-7180: capitalization standards for pause video autoplay message

parent 0f443e99
No related branches found
No related tags found
1 merge request!236Feature/istwcms 7180 kpaxman video pause
......@@ -21,14 +21,14 @@
$(this).removeClass('uw-video-play');
$(this).addClass('uw-video-pause');
$(this).attr('aria-label', 'Pause');
$(this).attr('title', 'Pause Video Autoplay');
$(this).attr('title', 'Pause video autoplay');
}
else {
video.pause();
$(this).removeClass('uw-video-pause');
$(this).addClass('uw-video-play');
$(this).attr('aria-label', 'Play');
$(this).attr('title', 'Pause Video Autoplay');
$(this).attr('title', 'Pause video autoplay');
}
});
});
......
......@@ -105,7 +105,7 @@
{% if image.type == "uw_para_local_video_banner" and media_flags.use_play_pause %}
<div class="video-bottom">
<div class="controls embedded-video-controls">
<button id="btn-{{ image.uuid }}" class="banner-video-control video-control uw-video-pause" aria-label="Pause" title="Pause Video Autoplay">
<button id="btn-{{ image.uuid }}" class="banner-video-control video-control uw-video-pause" aria-label="Pause" title="Pause video autoplay">
<span class ="play">
{% include '@components/icon/icon--button/icon--button.twig' with {
'name': 'banner_play',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment