Plugin Directory

Changeset 660002


Ignore:
Timestamp:
01/28/2013 03:47:12 AM (13 years ago)
Author:
ethanhackett
Message:

Actually fixed the jQuery error on fadetoggle of featured images.

Location:
post-tiles
Files:
1 added
3 edited
12 copied

Legend:

Unmodified
Added
Removed
  • post-tiles/tags/1.3.7/post-tiles-frontend.js

    r659736 r660002  
    1717        $('.post-tile-selected').removeClass('post-tile-selected');
    1818        // Fade in the current selected category
    19         $(categoryClass).fadeTo('fast', 1.0);
     19        $('li.'+categoryClass).fadeTo('fast', 1.0);
    2020        // Add the active class to the category key
    21         $(categoryClass).addClass('post-tile-selected');
     21        $('li.'+categoryClass).addClass('post-tile-selected');
    2222        // Disbale the anchor
    2323        return false;
     
    9191        // Action when mouse enter of featured image
    9292        $('li.fade').mouseenter(function() {
    93             $(this).children('a').animate({
    94                 left: '0%'
    95               }, 1 );
     93            $(this).children('a').css({left: '0%'});
    9694            $(this).children('a').fadeToggle();
    9795        });
    9896       
    9997        // Action when mouse leave of featured image
    100         $('li.fade').mouseleave(function() {
    101             $(this).children('a').fadeToggle();
    102             $(this).children('a').animate({
    103                 left: '105%'
    104               }, 1 );
     98        $('li.fade').live('mouseleave', function(){
     99            $(this).children('a').fadeToggle(function() {
     100                $(this).children('a').css({left: '105%'});
     101            });
    105102        });
    106103 
  • post-tiles/tags/1.3.7/post-tiles.php

    r659864 r660002  
    55Description: This plugin displays recent posts as tiles. Posts can choose categories by id and numbeer of posts to display. Example shortcode: [post-tiles] or [post-tiles categories='1,2,4,10' posts='8' excerpt='18'].
    66Author: Ethan Hackett
    7 Version: 1.3.6
     7Version: 1.3.7
    88Author URI: http://www.posttiles.com
    99
  • post-tiles/tags/1.3.7/readme.txt

    r659864 r660002  
    55Requires at least: 3.0
    66Tested up to: 3.5.0
    7 Stable tag: 1.3.6
     7Stable tag: 1.3.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2323*NOTE:* The category id numbers are listed below, next to the category names. You can use both the categories and posts attributes **Example: [post-tiles categories='1,2,4' posts='8' excerpt='18']**
    2424
    25 Version 1.3.5
     25Version 1.3.7
    2626
    2727== Installation ==
     
    4545
    4646== Changelog ==
     47
     48= 1.3.7 =
     49* Actually fixed the jQuery issue with featured images using fadetoggle.
     50
     51= 1.3.6 =
     52* Fixed a jQuery Issue with features images using fadetoggle.
    4753
    4854= 1.3.5 =
  • post-tiles/trunk/post-tiles-frontend.js

    r659734 r660002  
    1717        $('.post-tile-selected').removeClass('post-tile-selected');
    1818        // Fade in the current selected category
    19         $(categoryClass).fadeTo('fast', 1.0);
     19        $('li.'+categoryClass).fadeTo('fast', 1.0);
    2020        // Add the active class to the category key
    21         $(categoryClass).addClass('post-tile-selected');
     21        $('li.'+categoryClass).addClass('post-tile-selected');
    2222        // Disbale the anchor
    2323        return false;
     
    9191        // Action when mouse enter of featured image
    9292        $('li.fade').mouseenter(function() {
    93             $(this).children('a').animate({
    94                 left: '0%'
    95               }, 1 );
     93            $(this).children('a').css({left: '0%'});
    9694            $(this).children('a').fadeToggle();
    9795        });
    9896       
    9997        // Action when mouse leave of featured image
    100         $('li.fade').mouseleave(function() {
    101             $(this).children('a').fadeToggle();
    102             $(this).children('a').animate({
    103                 left: '105%'
    104               }, 1 );
     98        $('li.fade').live('mouseleave', function(){
     99            $(this).children('a').fadeToggle(function() {
     100                $(this).children('a').css({left: '105%'});
     101            });
    105102        });
    106103 
  • post-tiles/trunk/post-tiles.php

    r659864 r660002  
    55Description: This plugin displays recent posts as tiles. Posts can choose categories by id and numbeer of posts to display. Example shortcode: [post-tiles] or [post-tiles categories='1,2,4,10' posts='8' excerpt='18'].
    66Author: Ethan Hackett
    7 Version: 1.3.6
     7Version: 1.3.7
    88Author URI: http://www.posttiles.com
    99
  • post-tiles/trunk/readme.txt

    r659864 r660002  
    55Requires at least: 3.0
    66Tested up to: 3.5.0
    7 Stable tag: 1.3.6
     7Stable tag: 1.3.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2323*NOTE:* The category id numbers are listed below, next to the category names. You can use both the categories and posts attributes **Example: [post-tiles categories='1,2,4' posts='8' excerpt='18']**
    2424
    25 Version 1.3.5
     25Version 1.3.7
    2626
    2727== Installation ==
     
    4545
    4646== Changelog ==
     47
     48= 1.3.7 =
     49* Actually fixed the jQuery issue with featured images using fadetoggle.
     50
     51= 1.3.6 =
     52* Fixed a jQuery Issue with features images using fadetoggle.
    4753
    4854= 1.3.5 =
Note: See TracChangeset for help on using the changeset viewer.