fixed "let" issue with some uglifiers

This commit is contained in:
Romain Tiger 2022-01-03 08:50:44 +01:00
parent 3054ef60f5
commit b3e66e3b6e
1 changed files with 1 additions and 1 deletions

View File

@ -3147,7 +3147,7 @@ tarteaucitron.services.vimeo = {
"js": function () { "js": function () {
"use strict"; "use strict";
tarteaucitron.fallback(['vimeo_player'], function (x) { tarteaucitron.fallback(['vimeo_player'], function (x) {
let frame_title = tarteaucitron.fixSelfXSS(tarteaucitron.getElemAttr(x, "title") || 'Vimeo iframe'), var frame_title = tarteaucitron.fixSelfXSS(tarteaucitron.getElemAttr(x, "title") || 'Vimeo iframe'),
video_width = tarteaucitron.getElemAttr(x, "width"), video_width = tarteaucitron.getElemAttr(x, "width"),
frame_width = 'width=', frame_width = 'width=',
video_height = tarteaucitron.getElemAttr(x, "height"), video_height = tarteaucitron.getElemAttr(x, "height"),