Не подгружается скрипт, блокирует хром что не безопасный контент
имею вот такой код, как сделать подгрузку по https ?
{
iframe = document.createElement('iframe');
var HEADER_HEIGHT = <?php echo $vars['ui']['headerHeight'] ?>;
var MOBILE_BREAKPOINT = <?php echo $vars['ui']['mobileBreakpoint'] ?>;
var MOBILE_BUTTON_SIZE = 55;
iframe.id = iframe.name = 'customer-chat-iframe';
iframe.src = '<?php echo $app->url("Widget:iframeContent") ?>&domain=' + document.domain;
iframe.border = 0;
iframe.marginwidth = 0;
iframe.marginWidth = 0;
iframe.marginheight = 0;
iframe.marginHeight = 0;
iframe.frameBorder = 0;
iframe.outline = 'none';
iframe.style.display = 'none';
iframe.style.background = 'transparent';
iframe.style.border = 'none';
iframe.style.outline = 'none';
iframe.style.position = 'fixed';
iframe.style.zIndex = 999999;
iframe.style.overflow = 'hidden';
iframe.style.bottom = '';
iframe.style.bottom = -(<?php echo $vars['ui']['widgetHeight'] ?> - HEADER_HEIGHT) + 'px';
iframe.style.right = '<?php echo $vars['ui']['widgetOffset'] ?>px';
iframe.style.width = '<?php echo $vars['ui']['widgetWidth'] ?>px';
iframe.style.height = '<?php echo $vars['ui']['widgetHeight'] ?>px';
iframe.style.margin = 0;
iframe.style.padding = 0;
// Responsiveness support
var mobileStyles = {
position : 'absolute',
width : MOBILE_BUTTON_SIZE + 'px',
height : MOBILE_BUTTON_SIZE + 'px',
top : '',
bottom : '',
right : 0
};