1
0
mirror of https://github.com/videojs/video.js.git synced 2025-02-04 11:43:27 +02:00

Merge pull request #265 from EricR/patch-1

techOrder should be an array of strings
This commit is contained in:
Steve Heffernan 2013-04-04 12:48:13 -07:00
commit 1faa39db5b

View File

@ -42,11 +42,11 @@ Adding Playback Technology
When adding additional Tech to a video player, make sure to add the supported tech to the video object.
### Tag Method: ###
<video data-setup='{"techOrder": ["html5", "flash", [other supported tech]]}'
<video data-setup='{"techOrder": ["html5", "flash", "other supported tech"]}'
### Object Method: ###
_V_("videoID", {
techOrder: {"html5", "flash", [other supported tech]}
techOrder: ["html5", "flash", "other supported tech"]
});
Youtube Technology