Warning: Cannot modify header information - headers already sent by (output started at /var/www/jonas-eriksen.dk/pic/private/index.php:1) in /var/www/jonas-eriksen.dk/pic/private/index.php on line 215
var/www/jonas-eriksen.dk/daddys/admin/assets/js/page/gallery1.js 0000644 00000001067 15233656304 0020610 0 ustar 00 /**
* Gallery
*/
$(".gallery .gallery-item").each(function () {
var me = $(this);
me.attr('href', me.data('image'));
me.attr('title', me.data('title'));
if (me.parent().hasClass('gallery-fw')) {
me.css({
height: me.parent().data('item-height'),
});
me.find('div').css({
lineHeight: me.parent().data('item-height') + 'px'
});
}
me.css({
backgroundImage: 'url("' + me.data('image') + '")'
});
});
if (jQuery().Chocolat) {
$(".gallery").Chocolat({
className: 'gallery',
imageSelector: '.gallery-item',
});
}