fixed "let" issue with some uglifiers
This commit is contained in:
parent
3054ef60f5
commit
b3e66e3b6e
|
|
@ -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"),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue