Add .ogg check

This commit is contained in:
Jiiks 2016-03-29 02:35:51 +03:00
parent 31fc14aa5c
commit bd1274cf92
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ videoSupport.prototype.convert = function () {
var t = $(this);
var href = t.attr("href");
if(href == undefined) return true;
if(!href.endsWith(".mp4") && !href.endsWith(".webm")) return true;
if(!href.endsWith(".mp4") && !href.endsWith(".webm") && !href.endsWith(".ogg")) return true;
var type = "webm";
if(href.endsWith(".mp4")) type = "mp4";
if(href.endsWith(".ogg")) type = "ogg";