Changeset 660002
- Timestamp:
- 01/28/2013 03:47:12 AM (13 years ago)
- Location:
- post-tiles
- Files:
-
- 1 added
- 3 edited
- 12 copied
-
tags/1.3.7 (added)
-
tags/1.3.7/plus.png (copied) (copied from post-tiles/trunk/plus.png)
-
tags/1.3.7/plus@2x.png (copied) (copied from post-tiles/trunk/plus@2x.png)
-
tags/1.3.7/post-tiles-frontend.js (copied) (copied from post-tiles/trunk/post-tiles-frontend.js) (2 diffs)
-
tags/1.3.7/post-tiles.css (copied) (copied from post-tiles/trunk/post-tiles.css)
-
tags/1.3.7/post-tiles.js (copied) (copied from post-tiles/trunk/post-tiles.js)
-
tags/1.3.7/post-tiles.php (copied) (copied from post-tiles/trunk/post-tiles.php) (1 diff)
-
tags/1.3.7/readme.txt (copied) (copied from post-tiles/trunk/readme.txt) (3 diffs)
-
tags/1.3.7/screenshot-1.png (copied) (copied from post-tiles/trunk/screenshot-1.png)
-
tags/1.3.7/screenshot-2.png (copied) (copied from post-tiles/trunk/screenshot-2.png)
-
tags/1.3.7/screenshot-3.png (copied) (copied from post-tiles/trunk/screenshot-3.png)
-
tags/1.3.7/screenshot-4.png (copied) (copied from post-tiles/trunk/screenshot-4.png)
-
tags/1.3.7/screenshot-5.png (copied) (copied from post-tiles/trunk/screenshot-5.png)
-
trunk/post-tiles-frontend.js (modified) (2 diffs)
-
trunk/post-tiles.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-tiles/tags/1.3.7/post-tiles-frontend.js
r659736 r660002 17 17 $('.post-tile-selected').removeClass('post-tile-selected'); 18 18 // Fade in the current selected category 19 $( categoryClass).fadeTo('fast', 1.0);19 $('li.'+categoryClass).fadeTo('fast', 1.0); 20 20 // Add the active class to the category key 21 $( categoryClass).addClass('post-tile-selected');21 $('li.'+categoryClass).addClass('post-tile-selected'); 22 22 // Disbale the anchor 23 23 return false; … … 91 91 // Action when mouse enter of featured image 92 92 $('li.fade').mouseenter(function() { 93 $(this).children('a').animate({ 94 left: '0%' 95 }, 1 ); 93 $(this).children('a').css({left: '0%'}); 96 94 $(this).children('a').fadeToggle(); 97 95 }); 98 96 99 97 // 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 }); 105 102 }); 106 103 -
post-tiles/tags/1.3.7/post-tiles.php
r659864 r660002 5 5 Description: 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']. 6 6 Author: Ethan Hackett 7 Version: 1.3. 67 Version: 1.3.7 8 8 Author URI: http://www.posttiles.com 9 9 -
post-tiles/tags/1.3.7/readme.txt
r659864 r660002 5 5 Requires at least: 3.0 6 6 Tested up to: 3.5.0 7 Stable tag: 1.3. 67 Stable tag: 1.3.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 23 23 *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']** 24 24 25 Version 1.3. 525 Version 1.3.7 26 26 27 27 == Installation == … … 45 45 46 46 == 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. 47 53 48 54 = 1.3.5 = -
post-tiles/trunk/post-tiles-frontend.js
r659734 r660002 17 17 $('.post-tile-selected').removeClass('post-tile-selected'); 18 18 // Fade in the current selected category 19 $( categoryClass).fadeTo('fast', 1.0);19 $('li.'+categoryClass).fadeTo('fast', 1.0); 20 20 // Add the active class to the category key 21 $( categoryClass).addClass('post-tile-selected');21 $('li.'+categoryClass).addClass('post-tile-selected'); 22 22 // Disbale the anchor 23 23 return false; … … 91 91 // Action when mouse enter of featured image 92 92 $('li.fade').mouseenter(function() { 93 $(this).children('a').animate({ 94 left: '0%' 95 }, 1 ); 93 $(this).children('a').css({left: '0%'}); 96 94 $(this).children('a').fadeToggle(); 97 95 }); 98 96 99 97 // 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 }); 105 102 }); 106 103 -
post-tiles/trunk/post-tiles.php
r659864 r660002 5 5 Description: 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']. 6 6 Author: Ethan Hackett 7 Version: 1.3. 67 Version: 1.3.7 8 8 Author URI: http://www.posttiles.com 9 9 -
post-tiles/trunk/readme.txt
r659864 r660002 5 5 Requires at least: 3.0 6 6 Tested up to: 3.5.0 7 Stable tag: 1.3. 67 Stable tag: 1.3.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 23 23 *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']** 24 24 25 Version 1.3. 525 Version 1.3.7 26 26 27 27 == Installation == … … 45 45 46 46 == 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. 47 53 48 54 = 1.3.5 =
Note: See TracChangeset
for help on using the changeset viewer.