From d7aa9f955880a9f162e921de259ded42a0ca7b40 Mon Sep 17 00:00:00 2001 From: "Gamaliel A. Toro Herrera" Date: Mon, 3 Oct 2011 17:38:13 +0200 Subject: [PATCH] - change order of technologies to check first html5 over flash --- video.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/video.js b/video.js index 59e9db0aa..fb9b8f6bb 100644 --- a/video.js +++ b/video.js @@ -95,7 +95,7 @@ var VideoJS = _V_ = function(id, options){ }; VideoJS.options = { - techOrder: ["h5swf","html5","flowplayer"], + techOrder: ["html5","h5swf","flowplayer"], controlSets: ["bigPlayButton", "bar", "subtitlesBox"/*, "replay"*/], controlSetOptions: { bigPlayButton: {}, @@ -3126,4 +3126,4 @@ _V_.loadPlayerTimeout(1); // Let vjs javascript finish executing window.VideoJS = window._V_ = VideoJS; // End self-executing function -})(window); \ No newline at end of file +})(window);