From 494b05bb8e4f41091eb1a1398b3c5794c503e245 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Fri, 26 Nov 2021 23:13:01 +0100 Subject: [PATCH] Minor modification. --- website/o3dv/js/cookiedialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/o3dv/js/cookiedialog.js b/website/o3dv/js/cookiedialog.js index 0e3db04..b17244b 100644 --- a/website/o3dv/js/cookiedialog.js +++ b/website/o3dv/js/cookiedialog.js @@ -12,7 +12,7 @@ OV.ShowCookieDialog = function (onAccept) ]); let text = 'This website uses cookies to offer you better user experience. See the details at the Cookies Policy page.'; - $('
').html (text).addClass ('ov_dialog_section').appendTo (contentDiv); + OV.AddDiv (contentDiv, 'ov_dialog_section', text); dialog.SetCloseable (false); dialog.Show (); return dialog;