Файл: contao-3.5.8/system/modules/core/templates/jquery/j_colorbox.xhtml
Строк: 9
<?php
// Add the colorbox style sheet
$GLOBALS['TL_CSS'][] = 'assets/jquery/colorbox/'. $GLOBALS['TL_ASSETS']['COLORBOX'] .'/css/colorbox.min.css|static';
?>
<script type="text/javascript" src="<?= TL_ASSETS_URL ?>assets/jquery/colorbox/<?= $GLOBALS['TL_ASSETS']['COLORBOX'] ?>/js/colorbox.min.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
(function($) {
$(document).ready(function() {
$('a[rel^=lightbox]').colorbox({
// Put custom options here
loop: false,
maxWidth: '95%',
maxHeight: '95%'
});
});
})(jQuery);
/* ]]> */
</script>