/
home
/
assocoweys
/
avexp
/
modules
/
mod_latestnewsenhanced
/
animations
/
justpagination
/
Upload File
HOME
<?php /** * @copyright Copyright (C) 2011 Simplify Your Web, Inc. All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt */ // No direct access to this file defined('_JEXEC') or die; // Explicitly declare the type of content header("Content-type: text/javascript; charset=UTF-8"); // DO NOT ADD COMMENTS TO THE CODE - IT WILL PREVENT COMPRESSION ?> (function($){ $(window).load(function() { $("<?php echo $css_prefix ?>.newslist").pajinate({ item_container_id : ".latestnews-items", nav_panel_id : ".items_pagination", items_per_page: <?php echo $visibleatonce ?>, num_page_links_to_display: <?php echo $num_links ?>, wrap_around: true, <?php if (!$arrows) : ?> show_prev_next: false, <?php else : ?> <?php if (empty($prev_label)) : ?> <?php if (!$horizontal && $position == 'around') : ?> nav_label_prev: "<span class='SYWicon-arrow-up2'></span>", <?php else : ?> nav_label_prev: "<span class='SYWicon-arrow-left2'></span>", <?php endif; ?> <?php else : ?> nav_label_prev: "<span><?php echo $prev_label ?></span>", <?php endif; ?> <?php if (empty($next_label)) : ?> <?php if (!$horizontal && $position == 'around') : ?> nav_label_next: "<span class='SYWicon-arrow-down2'></span>" <?php else : ?> nav_label_next: "<span class='SYWicon-arrow-right2'></span>" <?php endif; ?> <?php else : ?> nav_label_next: "<span><?php echo $next_label ?></span>" <?php endif; ?> <?php endif; ?> }).hide().fadeIn('slow'); }); })(jQuery);