diff options
author | Sam Potts <sam@potts.es> | 2018-06-13 00:03:24 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-13 00:03:24 +1000 |
commit | 70f3390ffead7761606fc3cd439ecac6b53e03eb (patch) | |
tree | 631b4f02194979879e2b15b9cdc180e55f54ba06 /src/js/html5.js | |
parent | 0b09b8ee6fc2212aa15d0d81999448eea62050ca (diff) | |
parent | ee4c044d2746ffc3cb5bd5de5fe6eab6b336a11c (diff) | |
download | plyr-70f3390ffead7761606fc3cd439ecac6b53e03eb.tar.lz plyr-70f3390ffead7761606fc3cd439ecac6b53e03eb.tar.xz plyr-70f3390ffead7761606fc3cd439ecac6b53e03eb.zip |
Merge pull request #1028 from a60814billy/fix/cancel-request-not-remove-source-tag-correctly
fix: html5.cancelRequest not remove source tag correctly
Diffstat (limited to 'src/js/html5.js')
-rw-r--r-- | src/js/html5.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/html5.js b/src/js/html5.js index fb2bc359..c828dfaf 100644 --- a/src/js/html5.js +++ b/src/js/html5.js @@ -91,7 +91,7 @@ const html5 = { } // Remove child sources - utils.removeElement(html5.getSources()); + utils.removeElement(html5.getSources.call(this)); // Set blank video src attribute // This is to prevent a MEDIA_ERR_SRC_NOT_SUPPORTED error |