diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2014-12-15 18:12:29 +0000 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2014-12-15 18:12:29 +0000 |
commit | 2ed2be1ccc0893b7b16ed16004b20bb992a06526 (patch) | |
tree | d2342df33325e2f2099d8e3c4b597f74e5487eb4 /guides | |
parent | 1a2341038080155ca691a198f6497dba31bc8ce5 (diff) | |
parent | bb0d6389e58d782b8b4fcec40d933c06be8734f0 (diff) | |
download | rails-2ed2be1ccc0893b7b16ed16004b20bb992a06526.tar.gz rails-2ed2be1ccc0893b7b16ed16004b20bb992a06526.tar.bz2 rails-2ed2be1ccc0893b7b16ed16004b20bb992a06526.zip |
Merge branch 'master' of github.com:rails/docrails
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/layouts_and_rendering.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/guides/source/layouts_and_rendering.md b/guides/source/layouts_and_rendering.md index ae16ad86cd..28fa61a964 100644 --- a/guides/source/layouts_and_rendering.md +++ b/guides/source/layouts_and_rendering.md @@ -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` |