Changeset 672808
- Timestamp:
- 02/25/2013 03:16:17 AM (13 years ago)
- Location:
- lazy-content-slider/trunk
- Files:
-
- 2 edited
-
lzcs.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lazy-content-slider/trunk/lzcs.php
r672697 r672808 5 5 Description: This is a content slider that shows 5 slides from a "Featured Category" 6 6 Author: Lee Thompson 7 Version: 2.77 Version: 3.0 8 8 Author URI: http://mysqlhow2.com 9 9 … … 34 34 wp_register_script( 'jquery-min', 'http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'); 35 35 wp_enqueue_script( 'jquery-min' ); 36 wp_deregister_script( 'jquery-tab' ); 37 wp_register_script( 'jquery-tab', plugins_url('/js/tabs.js', __FILE__) ); 38 wp_enqueue_script( 'jquery-tab' ); 36 39 wp_deregister_script( 'jquery-ui' ); 37 40 wp_register_script( 'jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.min.js'); … … 125 128 $thumbnail = get_the_post_thumbnail($postid, array(50,50) ); 126 129 ?> 127 <li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-<?php echo $recent["ID"] ?> ">130 <li class="ui-tabs-nav-item " id="nav-fragment-<?php echo $recent["ID"] ?> "> 128 131 <a href="#fragment-<?php echo $recent["ID"]; ?>"><?php echo $thumbnail ?><span><?php echo esc_attr($recent["post_title"]); ?></span></a> 129 132 </li> -
lazy-content-slider/trunk/readme.txt
r672697 r672808 5 5 Requires at least: 2.9.2 6 6 Tested up to: 3.5.1 7 Stable tag: 2.77 Stable tag: 3.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 88 88 = 2.6 = 89 89 Fixed Jquery version 90 = 2.7=91 Fixed version 90 = 3.0 = 91 Updated all code to be compliant of newer version of jQuery 92 92 93 93 == Changelog == … … 119 119 = 2.6 = 120 120 Fix Jquery version 121 = 2.7=122 Fixed version 121 = 3.0 = 122 Updated all code to be compliant of newer version of jQuery
Note: See TracChangeset
for help on using the changeset viewer.