Actions
Bug #66853
closedHTML5 video tag attributes
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Frontend
Target version:
-
Start date:
2015-05-08
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
easy
Is Regression:
No
Sprint Focus:
Description
If you try to add to the html5 media element the attribute preload="none", it doesn't show up on the frontend.
In /sysext/frontend/Classes/ContentObject/FlowPlayerContentObject.php between the lines 389-393:
foreach ($this->html5TagAttributes as $attribute) { if ($conf['attributes.'][$attribute] === 'true' || $conf['attributes.'][$attribute] === strToLower($attribute) || $conf['attributes.'][$attribute] === $attribute) { $attributes .= strToLower($attribute) . '="' . strToLower($attribute) . '" '; } }
The attribute preload is not allowed with the value "none" and the custom value will not be used.
Updated by Benni Mack over 9 years ago
- Category changed from Frontend to 1606
- Target version deleted (
next-patchlevel)
Updated by Georg Ringer over 9 years ago
- Status changed from New to Closed
mediace has been extracted from the core and is not needed anymore using CMS7. however it can be now found at github ant the issue has been moved to https://github.com/FriendsOfTYPO3/mediace/issues/3
Actions