Plugin Directory

Changeset 416021


Ignore:
Timestamp:
07/27/2011 04:54:04 PM (15 years ago)
Author:
jeff_
Message:

atempt to fix some «always loading» behaviors

Location:
frontpage-slideshow/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • frontpage-slideshow/trunk/frontpage-slideshow.php

    r416004 r416021  
    44Plugin URI: http://wordpress.org/extend/plugins/frontpage-slideshow/
    55Description: Frontpage Slideshow provides a slide show like you can see on <a href="http://linux.com">linux.com</a> or <a href="http://modulaweb.fr/">modulaweb.fr</a> front page. <a href="options-general.php?page=frontpage-slideshow">Configuration Page</a>
    6 Version: 0.9.9.3.6
     6Version: 0.9.9.3.7
    77Author: Jean-François VIAL
    88Author URI: http://www.modulaweb.fr/
     
    2525    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    2626*/
    27 define ('FRONTPAGE_SLIDESHOW_VERSION', '0.9.9.3.6');
     27define ('FRONTPAGE_SLIDESHOW_VERSION', '0.9.9.3.7');
    2828$fs_already_displayed = false; // the slideshow dont have been displayed yet
    2929
  • frontpage-slideshow/trunk/readme.txt

    r416004 r416021  
    55Requires at least: 2.7.0
    66Tested up to: 3.2.1
    7 Stable tag: 0.9.9.3.6
     7Stable tag: 0.9.9.3.7
    88
    99Frontpage Slideshow provides a slide show like you can see in linux.com front page
     
    120120* v 0.9.9.3.5 : fix the «always loading» bug, suppress PHP notices messages, don't use deprecated functions any more, admin page bugs, uses px per default for image and button sizes, use now WP integrated jQuery-UI files + add support of post thumbnails
    121121* v 0.9.9.3.6 : fix an error when the theme do not support posts thumbnails + atempt to fix some «always loading» behaviors
     122* v 0.9.9.3.7 : atempt to fix some «always loading» behaviors
    122123
    123124== Screenshots ==
  • frontpage-slideshow/trunk/templates/default/template.php

    r415746 r416021  
    130130        function(){jQuery(this).stop(true, true).fadeTo('fast',0.15);}
    131131    );
    132     jQuery('.fs-img').last().load(function() {fsDoSlide()});
    133132<?php
    134133for ($i=0;$i<=$fslast;$i++)
    135     echo "jQuery('#fs-entry-{$i}').click(function() {fsChangeSlide({$i})});\n";
    136 ?>
     134    echo "  jQuery('#fs-entry-{$i}').click(function() {fsChangeSlide({$i})});\n";
     135?>
     136    fsDoSlide();
    137137});
    138138<?php
Note: See TracChangeset for help on using the changeset viewer.