diff options
| author | 2017-09-26 22:19:18 +0200 | |
|---|---|---|
| committer | 2017-09-26 22:19:18 +0200 | |
| commit | f293cec4927b9abebca72588c531c53f83640a48 (patch) | |
| tree | 7bd68b3ebf63a2ca52fb1e1d83a4ea79bb6649fe /lib | |
| parent | c5b5d8fade4e44d68b90fb628536b26aa38127e9 (diff) | |
HTML5 show controls audio video (#1642)
* HTML5 show controls audio video
* Changelog 1642
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/lib_rss.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php index 959cb064c..09048700d 100644 --- a/lib/lib_rss.php +++ b/lib/lib_rss.php @@ -191,9 +191,9 @@ function customSimplePie() { 'onmouseover', 'onmousemove', 'onmouseout', 'onfocus', 'onblur', 'onkeypress', 'onkeydown', 'onkeyup', 'onselect', 'onchange', 'seamless', 'sizes', 'srcset'))); $simplePie->add_attributes(array( - 'audio' => array('preload' => 'none'), + 'audio' => array('controls' => 'controls', 'preload' => 'none'), 'iframe' => array('sandbox' => 'allow-scripts allow-same-origin'), - 'video' => array('preload' => 'none'), + 'video' => array('controls' => 'controls', 'preload' => 'none'), )); $simplePie->set_url_replacements(array( 'a' => 'href', |
