From 3ef058394574c630726c955ba2a54a63df453d08 Mon Sep 17 00:00:00 2001 From: Sem Date: Wed, 1 Aug 2012 21:13:28 +0200 Subject: Fixed image full view lightbox. --- views/default/js/photos/tidypics.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'views') diff --git a/views/default/js/photos/tidypics.php b/views/default/js/photos/tidypics.php index 869089850..1ff7b2c40 100644 --- a/views/default/js/photos/tidypics.php +++ b/views/default/js/photos/tidypics.php @@ -12,8 +12,12 @@ elgg.tidypics.init = function() { if (elgg.ui.lightbox) { $('.elgg-lightbox, .elgg-lightbox-photo').colorbox({ href: function() { - var guid = (new RegExp("photos/image/[0-9]+", 'i')).exec($(this).attr('href')).toString().substr("photos/image/".length); - return elgg.config.wwwroot + "photos/thumbnail/" + guid + "/large"; + if ((new RegExp("photos/image/[0-9]+", 'i')).test($(this).attr('href'))) { + var guid = (new RegExp("photos/image/[0-9]+", 'i')).exec($(this).attr('href')).toString().substr("photos/image/".length); + return elgg.config.wwwroot + "photos/thumbnail/" + guid + "/large"; + } else { + return $(this).attr('href'); + } }, title: function() { return '

'+ $(this).find('img').attr('title') +'

- '+ elgg.echo('comments') +''; -- cgit v1.2.3