Файл: магазин/e-proger/js/demo.js
Строк: 14
<?php
//-------------------------------------------------------------------------------------
//
// THIS FILE IS NOT A PART OF THE PLUGIN, IT'S ONLY FOR THE DEMO
//
//-------------------------------------------------------------------------------------
$( document ).ready(function() {
$('#gallery').find('a').each(function(i,elem) {
if ($(this).attr('href')==undefined) {$(this).remove(); }
});
// finally, initialize photobox on all retrieved images
$('#gallery').photobox('a',{ time:0 });
// re-initialize the photbox DOM (does what Document ready does)
//-----------------------------------------------
$('#gallery').photobox('prepareDOM');
});
?>