1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- *
- */
- ?>
- elgg.provide('elgg.tidypics');
- elgg.tidypics.init = function() {
- if ($(".tidypics-lightbox").length) {
- $(".tidypics-lightbox").colorbox({photo:true, maxWidth:'95%', maxHeight:'95%'});
- }
- $("#tidypics-sort").sortable({
- opacity: 0.7,
- revert: true,
- scroll: true
- });
- $('.elgg-form-photos-album-sort').submit(function() {
- var tidypics_guids = [];
- $("#tidypics-sort li").each(function(index) {
- tidypics_guids.push($(this).attr('id'));
- });
- $('input[name="guids"]').val(tidypics_guids.toString());
- });
- };
- elgg.register_hook_handler('init', 'system', elgg.tidypics.init);
|