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
50674a96
Commit
50674a96
authored
Nov 08, 2013
by
polesye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BLD-457: Fix speed menu when YouTube is unavailable.
parent
b6ad9c7f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
12 deletions
+13
-12
CHANGELOG.rst
+2
-0
common/lib/xmodule/xmodule/js/src/video/01_initialize.js
+9
-11
common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js
+1
-1
lms/djangoapps/courseware/features/video.py
+1
-0
No files found.
CHANGELOG.rst
View file @
50674a96
...
...
@@ -8,6 +8,8 @@ the top. Include a label indicating the component affected.
LMS: Beta instructor dashboard will only count actively enrolled students for
course enrollment numbers.
Blades: Blades: Fix speed menu that is not rendered correctly when YouTube is unavailable. (BLD-457).
LMS: Users with is_staff=True no longer have the STAFF label appear on
their forum posts.
...
...
common/lib/xmodule/xmodule/js/src/video/01_initialize.js
View file @
50674a96
...
...
@@ -167,7 +167,7 @@ function (VideoPlayer) {
// function _prepareHTML5Video(state)
// The function prepare HTML5 video, parse HTML5
// video sources etc.
function
_prepareHTML5Video
(
state
,
html5Mode
)
{
function
_prepareHTML5Video
(
state
)
{
state
.
parseVideoSources
(
{
mp4
:
state
.
config
.
mp4Source
,
...
...
@@ -176,15 +176,13 @@ function (VideoPlayer) {
}
);
if
(
html5Mode
)
{
state
.
speeds
=
[
'0.75'
,
'1.0'
,
'1.25'
,
'1.50'
];
state
.
videos
=
{
'0.75'
:
state
.
config
.
sub
,
'1.0'
:
state
.
config
.
sub
,
'1.25'
:
state
.
config
.
sub
,
'1.5'
:
state
.
config
.
sub
};
}
state
.
speeds
=
[
'0.75'
,
'1.0'
,
'1.25'
,
'1.50'
];
state
.
videos
=
{
'0.75'
:
state
.
config
.
sub
,
'1.0'
:
state
.
config
.
sub
,
'1.25'
:
state
.
config
.
sub
,
'1.5'
:
state
.
config
.
sub
};
// We must have at least one non-YouTube video source available.
// Otherwise, return a negative.
...
...
@@ -313,7 +311,7 @@ function (VideoPlayer) {
if
(
!
(
_parseYouTubeIDs
(
this
)))
{
// If we do not have YouTube ID's, try parsing HTML5 video sources.
if
(
!
_prepareHTML5Video
(
this
,
true
))
{
if
(
!
_prepareHTML5Video
(
this
))
{
// Non-YouTube sources were not found either.
return
;
...
...
common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js
View file @
50674a96
...
...
@@ -13,7 +13,7 @@ function () {
if
(
state
.
videoType
===
'html5'
)
{
_initialize
(
state
);
}
else
if
(
state
.
videoType
===
'youtube'
&&
state
.
youtubeXhr
)
{
state
.
youtubeXhr
.
done
(
function
()
{
state
.
youtubeXhr
.
always
(
function
()
{
_initialize
(
state
);
});
}
...
...
lms/djangoapps/courseware/features/video.py
View file @
50674a96
...
...
@@ -94,6 +94,7 @@ def video_is_rendered(_step, mode):
}
html_tag
=
modes
[
mode
.
lower
()]
assert
world
.
css_find
(
'.video {0}'
.
format
(
html_tag
))
.
first
assert
world
.
is_css_present
(
'.speed_link'
)
@step
(
'all sources are correct$'
)
...
...
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