From 3dcacb51998d8db0cd3c11193e9e38e8c7084503 Mon Sep 17 00:00:00 2001 From: Jiiks Date: Tue, 29 Mar 2016 02:42:35 +0300 Subject: [PATCH] Use a simple video tag --- Plugins/videoSupport.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Plugins/videoSupport.js b/Plugins/videoSupport.js index f7261bd..23a34a6 100644 --- a/Plugins/videoSupport.js +++ b/Plugins/videoSupport.js @@ -13,9 +13,7 @@ videoSupport.prototype.convert = function () { if(href.endsWith(".mp4")) type = "mp4"; if(href.endsWith(".ogg")) type = "ogg"; - t.replaceWith( ''); + t.replaceWith( ''); }); };