From 77a70ff27576649f455358b6ff18c2ad1c786f6c Mon Sep 17 00:00:00 2001 From: Sem Date: Wed, 1 Aug 2012 20:32:15 +0200 Subject: Ajax views was messy and wasn't resizing well, moved to only images. --- views/default/js/photos/tidypics.php | 14 ++++++++------ views/default/object/image/summary.php | 2 +- views/default/river/object/album/create.php | 2 +- views/default/river/object/image/create.php | 2 +- views/default/river/object/tidypics_batch/create.php | 2 +- 5 files changed, 12 insertions(+), 10 deletions(-) (limited to 'views') diff --git a/views/default/js/photos/tidypics.php b/views/default/js/photos/tidypics.php index 20dcc403e..869089850 100644 --- a/views/default/js/photos/tidypics.php +++ b/views/default/js/photos/tidypics.php @@ -9,12 +9,14 @@ elgg.provide('elgg.tidypics'); elgg.tidypics.init = function() { - if ($.colorbox) { - $(".elgg-gallery .tidypics-lightbox").colorbox({ - onComplete: function() { - $('#cboxLoadedContent .elgg-page-topbar, #cboxLoadedContent .elgg-page-header, ' + - '#cboxLoadedContent .elgg-page-footer, #cboxLoadedContent .elgg-sidebar').css('display', 'none'); - $('#cboxLoadedContent .elgg-layout').css('background-image', 'none'); + 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"; + }, + title: function() { + return '

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

- '+ elgg.echo('comments') +''; } }); } diff --git a/views/default/object/image/summary.php b/views/default/object/image/summary.php index 34a726353..0fa03cbe8 100644 --- a/views/default/object/image/summary.php +++ b/views/default/object/image/summary.php @@ -23,7 +23,7 @@ $body = elgg_view_entity_icon($image, 'small', array( 'img_class' => 'tidypics-photo', 'encode_text' => false, 'is_trusted' => true, - 'link_class' => 'tidypics-lightbox elgg-lightbox', + 'link_class' => 'tidypics-lightbox elgg-lightbox-photo', )); /* diff --git a/views/default/river/object/album/create.php b/views/default/river/object/album/create.php index 2269b2eb6..29620041f 100644 --- a/views/default/river/object/album/create.php +++ b/views/default/river/object/album/create.php @@ -26,7 +26,7 @@ if ($album_river_view == "cover") { foreach($images as $image) { $attachments .= '
  • '; $attachments .= elgg_view_entity_icon($image, 'tiny', array( - 'link_class' => 'tidypics-lightbox elgg-lightbox', + 'link_class' => 'tidypics-lightbox elgg-lightbox-photo', )); $attachments .= '
  • '; } diff --git a/views/default/river/object/image/create.php b/views/default/river/object/image/create.php index c34e6b309..6b68b4d68 100644 --- a/views/default/river/object/image/create.php +++ b/views/default/river/object/image/create.php @@ -25,7 +25,7 @@ $image_link = elgg_view('output/url', array( 'href' => $image->getURL(), 'text' => $image->getTitle(), 'is_trusted' => true, - 'class' => 'elgg-lightbox', + 'class' => 'elgg-lightbox-photo', )); $album_link = elgg_view('output/url', array( diff --git a/views/default/river/object/tidypics_batch/create.php b/views/default/river/object/tidypics_batch/create.php index 3908f824d..b97c853a3 100644 --- a/views/default/river/object/tidypics_batch/create.php +++ b/views/default/river/object/tidypics_batch/create.php @@ -46,7 +46,7 @@ if (count($images)) { foreach($images as $image) { $attachments .= '
  • '; $attachments .= elgg_view_entity_icon($image, 'tiny', array( - 'link_class' => 'tidypics-lightbox elgg-lightbox', + 'link_class' => 'tidypics-lightbox elgg-lightbox-photo', )); $attachments .= '
  • '; } -- cgit v1.2.3