thomasfaure

Results 3 comments of thomasfaure

@maximilian-walter Here is a hack that works: ``` apps.push({ purposes: ['content'], name: 'iframe-youtube', callback: (consent, app) => { if (consent) { $('iframe[data-name=iframe-youtube]').each(function () { $(this).css('display', 'inline'); }); } }, });...