1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

[ci skip] Fix output of video_tag helper

This commit is contained in:
Anton Cherepanov 2014-12-07 22:11:19 +03:00
parent d4fd3a18bd
commit bb0d6389e5

View file

@ -904,7 +904,10 @@ You can also specify multiple videos to play by passing an array of videos to th
This will produce:
```erb
<video><source src="/videos/trailer.ogg" /><source src="/videos/trailer.flv" /></video>
<video>
<source src="/videos/trailer.ogg">
<source src="/videos/movie.ogg">
</video>
```
#### Linking to Audio Files with the `audio_tag`