Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
721fffc9
Commit
721fffc9
authored
Apr 29, 2016
by
Chris Rodriguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AC-407 adding lable to video progress
parent
bf938052
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
common/lib/xmodule/xmodule/js/spec/video/video_progress_slider_spec.js
+1
-1
common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js
+1
-1
common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
+3
-1
No files found.
common/lib/xmodule/xmodule/js/spec/video/video_progress_slider_spec.js
View file @
721fffc9
...
...
@@ -44,7 +44,7 @@
expect
(
timeControl
).
toHaveAttrs
({
'role'
:
'slider'
,
'
title
'
:
'Video position'
,
'
aria-label
'
:
'Video position'
,
'aria-disabled'
:
'false'
});
...
...
common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js
View file @
721fffc9
...
...
@@ -83,7 +83,6 @@ function () {
// handle, behaves as a slider named 'video position'.
state
.
videoProgressSlider
.
handle
.
attr
({
'role'
:
'slider'
,
'title'
:
gettext
(
'Video position'
),
'aria-disabled'
:
false
,
'aria-valuetext'
:
getTimeDescription
(
state
.
videoProgressSlider
.
slider
.
slider
(
'option'
,
'value'
)),
...
...
@@ -91,6 +90,7 @@ function () {
'aria-valuemin'
:
'0'
,
'aria-valuenow'
:
state
.
videoPlayer
.
currentTime
,
'tabindex'
:
'0'
'aria-label'
:
gettext
(
'Video position'
)
});
state
.
el
.
on
(
'destroy'
,
state
.
videoProgressSlider
.
destroy
);
...
...
common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
View file @
721fffc9
...
...
@@ -50,7 +50,9 @@ function() {
'</span>'
,
'</span>'
,
'</button>'
,
'<div class="volume-slider-container" aria-hidden="true" title="'
+
gettext
(
'Adjust video volume'
)
+
'">'
,
// jshint ignore: line
'<div class="volume-slider-container" aria-hidden="true" title="'
,
gettext
(
'Adjust video volume'
),
'">'
,
'<div class="volume-slider" '
,
'role="slider"'
,
'aria-orientation="vertical" '
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment