Changeset 471363
- Timestamp:
- 12/06/2011 12:52:47 AM (14 years ago)
- Location:
- featured-posts-scroll/trunk
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
featured-posts-scroll.php (modified) (1 diff)
-
js/featuredpostslides.php (modified) (8 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
featured-posts-scroll/trunk
- Property svn:mergeinfo changed
/featured-posts-scroll/branches/varsize merged: 471361-471362
- Property svn:mergeinfo changed
-
featured-posts-scroll/trunk/featured-posts-scroll.php
r470978 r471363 4 4 Plugin URI: http://chasepettit.com 5 5 Description: A basic javascript based scrolling display of post titles and thumbnails. 6 Version: 1.2 16 Version: 1.22 7 7 Author: Chaser324 8 8 Author URI: http://chasepettit.com -
featured-posts-scroll/trunk/js/featuredpostslides.php
r470978 r471363 60 60 if (fpg_animLocked[index] == false) 61 61 { 62 scrollFeaturedPosts(this, 'right', index);62 FeaturedPostsLib.fps.scrollFeaturedPosts(this, 'right', index); 63 63 } 64 64 clearInterval(autoscrollInterval[index]); … … 70 70 if (fpg_animLocked[index] == false) 71 71 { 72 scrollFeaturedPosts(this, 'left', index);72 FeaturedPostsLib.fps.scrollFeaturedPosts(this, 'left', index); 73 73 } 74 74 clearInterval(autoscrollInterval[index]); … … 80 80 if (fpg_animLocked[index] == false) 81 81 { 82 scrollFeaturedPosts(this, 'right', index);82 FeaturedPostsLib.fps.scrollFeaturedPosts(this, 'right', index); 83 83 } 84 84 clearInterval(autoscrollInterval[index]); … … 90 90 if (fpg_animLocked[index] == false) 91 91 { 92 scrollFeaturedPosts(this, 'left', index);92 FeaturedPostsLib.fps.scrollFeaturedPosts(this, 'left', index); 93 93 } 94 94 clearInterval(autoscrollInterval[index]); … … 133 133 { 134 134 var callback = 135 " scrollFeaturedPosts($j('.featured-posts-wrapper').slice(" +135 "FeaturedPostsLib.fps.scrollFeaturedPosts(jQuery('.featured-posts-wrapper').slice(" + 136 136 index + "," + (index + 1) + ").children('.scrollFeaturedPostsRight'), 'right', " + index + ")"; 137 137 autoscrollInterval[index] = setInterval( … … 141 141 { 142 142 var callback = 143 " scrollFeaturedPosts($j('.featured-posts-wrapper').slice(" +143 "FeaturedPostsLib.fps.scrollFeaturedPosts(jQuery('.featured-posts-wrapper').slice(" + 144 144 index + "," + (index + 1) + ").children('.scrollFeaturedPostsRight-below'), 'right', " + index + ")"; 145 145 autoscrollInterval[index] = setInterval( … … 172 172 173 173 174 function scrollFeaturedPosts(button, dir, index)174 FeaturedPostsLib.fps.scrollFeaturedPosts = function(button, dir, index) 175 175 { 176 176 if (fpg_animLocked[index] != true) … … 209 209 animate(nextItem, currentItem, dir, index); 210 210 } 211 } 211 }; 212 212 213 213 -
featured-posts-scroll/trunk/readme.txt
r470978 r471363 7 7 Requires at least: 2.9.1 8 8 Tested up to: 3.2 9 Stable tag: 1.2 19 Stable tag: 1.22 10 10 11 11 A basic javascript based scrolling display of post titles and thumbnails. … … 89 89 90 90 == Changelog == 91 92 = 1.22 = 93 * Fixed autoscrolling. (Corrected jQuery reference in autoscroll callback function) 91 94 92 95 = 1.21 = … … 173 176 == Upgrade Notice == 174 177 175 = 1.2 1=176 * Refactored JavaScript to prevent causing issues with plugins that assume "$" references jQuery.178 = 1.22 = 179 * Fixed autoscrolling. (Corrected jQuery reference in autoscroll callback function)
Note: See TracChangeset
for help on using the changeset viewer.