Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
a5d784b5
authored
2014-07-22 11:18:39 -0700
by
Benjamin Peterson
Committed by
David LaPalomento
2014-09-16 14:26:12 -0400
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
shutdown the sourceBuffer in dispose()
1 parent
0337945d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
src/videojs-hls.js
src/videojs-hls.js
View file @
a5d784b
...
...
@@ -244,6 +244,9 @@ videojs.Hls.prototype.dispose = function() {
if
(
this
.
playlists
)
{
this
.
playlists
.
dispose
();
}
if
(
this
.
sourceBuffer
)
{
this
.
sourceBuffer
.
abort
();
}
videojs
.
Flash
.
prototype
.
dispose
.
call
(
this
);
};
...
...
Please
register
or
sign in
to post a comment