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:
parent
d4fd3a18bd
commit
bb0d6389e5
1 changed files with 4 additions and 1 deletions
|
@ -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`
|
||||
|
|
Loading…
Reference in a new issue