diff options
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/plyr.js | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/src/js/plyr.js b/src/js/plyr.js index e596f74a..ed4352e0 100644 --- a/src/js/plyr.js +++ b/src/js/plyr.js @@ -1790,20 +1790,6 @@ _updateProgress(event); } - // Remove <source> children and src attribute - /*function _removeSources() { - // Find child <source> elements - var sources = player.media.querySelectorAll('source'); - - // Remove each - for (var i = sources.length - 1; i >= 0; i--) { - _remove(sources[i]); - } - - // Remove src attribute - player.media.removeAttribute('src'); - }*/ - // Add a source element function _addSource(attributes) { _insertElement('source', player.media, attributes); @@ -1949,7 +1935,12 @@ if (config.autoplay) { _play(); } - } + } + + if('title' in source) { + config.title = source.title; + _setupPlayAria(); + } } // Update poster |