You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2016/05/03 21:48:12 UTC

[jira] [Commented] (WICKET-6160) Missing type for MediaComponent causing iOS devices not to be able to play videos

    [ https://issues.apache.org/jira/browse/WICKET-6160?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15269448#comment-15269448 ] 

ASF subversion and git services commented on WICKET-6160:
---------------------------------------------------------

Commit b3c813c5ceeb06095438d51f467cf9df7b8404ec in wicket's branch refs/heads/wicket-7.x from [~klopfdreh]
[ https://git-wip-us.apache.org/repos/asf?p=wicket.git;h=b3c813c ]

WICKET-6160

> Missing type for MediaComponent causing iOS devices not to be able to play videos
> ---------------------------------------------------------------------------------
>
>                 Key: WICKET-6160
>                 URL: https://issues.apache.org/jira/browse/WICKET-6160
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket, wicket-examples
>    Affects Versions: 7.2.0, 8.0.0
>            Reporter: Tobias Soloschenko
>            Assignee: Tobias Soloschenko
>            Priority: Minor
>             Fix For: 7.3.0, 8.0.0-M1
>
>
> Because of a missing option to set the type for MediaComponents - Video / Audio can't be played on iOS devices.
> If you want to enable it with the Wicket 7.2.0 you have to override the onComponentTag method:
> {code}
> 	@Override
> 	protected void onComponentTag(ComponentTag tag)
> 	{
> 		super.onComponentTag(tag);
>                 tag.put("type", "video/mp4");
> 	}
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)