Haml:
%audio{ :controls => 'controls' }
%source{ :src => 'http://apptestdata.s3.amazonaws.com/audio/brand/
brand2.m4a' }
%source{ :src => 'http://apptestdata.s3.amazonaws.com/audio/brand/
brand2.wav' }
Html:
<audio controls="controls">
<source src="http://apptestdata.s3.amazonaws.com/audio/brand/
brand2.m4a">
<source src="http://apptestdata.s3.amazonaws.com/audio/brand/
brand2.wav">
</audio>
Safari is OK, but IE is error.
Because source end tag(</source>) is nothing.
Can I insert source end tag(</source>)?
--
You received this message because you are subscribed to the Google Groups
"Haml" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/haml?hl=en.