From f1c51513dc55028d99f6693d73d223121c2b3464 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Fri, 17 Apr 2020 15:25:00 +0200 Subject: [PATCH] FIX: video tag --- src/core/js/ext_bottom_line.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/js/ext_bottom_line.js b/src/core/js/ext_bottom_line.js index 1de8525c..90026336 100644 --- a/src/core/js/ext_bottom_line.js +++ b/src/core/js/ext_bottom_line.js @@ -103,7 +103,7 @@ var ext_bottom_line = function ($, logger, is_in_view_port, load_config, getEnti */ const _create_video_preview = function (entity) { var path = connection.getFileSystemPath() + getEntityPath(entity); - return $(`<video control="controls"><source src="${path}"/></video>`)[0]; + return $(`<video controls="controls"><source src="${path}"/></video>`)[0]; } /** -- GitLab