Changeset 673063
- Timestamp:
- 02/25/2013 03:11:41 PM (13 years ago)
- Location:
- lazy-content-slider
- Files:
-
- 3 edited
- 6 copied
-
tags/3.3 (copied) (copied from lazy-content-slider/trunk)
-
tags/3.3/css/style-dark.css (copied) (copied from lazy-content-slider/trunk/css/style-dark.css)
-
tags/3.3/css/style.css (copied) (copied from lazy-content-slider/trunk/css/style.css)
-
tags/3.3/js/tabs.js (copied) (copied from lazy-content-slider/trunk/js/tabs.js) (2 diffs)
-
tags/3.3/lzcs.php (copied) (copied from lazy-content-slider/trunk/lzcs.php) (3 diffs)
-
tags/3.3/readme.txt (copied) (copied from lazy-content-slider/trunk/readme.txt) (3 diffs)
-
trunk/js/tabs.js (modified) (2 diffs)
-
trunk/lzcs.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lazy-content-slider/tags/3.3/js/tabs.js
r672809 r673063 41 41 // start rotation 42 42 if ( ms ) { 43 this.element.bind( "tabs show", rotate );43 this.element.bind( "tabsactivate", rotate ); 44 44 this.anchors.bind( o.event + ".tabs", stop ); 45 45 rotate(); … … 47 47 } else { 48 48 clearTimeout( self.rotation ); 49 this.element.unbind( "tabs show", rotate );49 this.element.unbind( "tabsactivate", rotate ); 50 50 this.anchors.unbind( o.event + ".tabs", stop ); 51 51 delete this._rotate; -
lazy-content-slider/tags/3.3/lzcs.php
r672810 r673063 5 5 Description: This is a content slider that shows 5 slides from a "Featured Category" 6 6 Author: Lee Thompson 7 Version: 3. 27 Version: 3.3 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' );39 36 wp_deregister_script( 'jquery-ui' ); 40 37 wp_register_script( 'jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.min.js'); … … 50 47 wp_enqueue_style( 'lazyslider' ); 51 48 } 49 wp_deregister_script( 'jquery-tab' ); 50 wp_register_script( 'jquery-tab', plugins_url('/js/tabs.js', __FILE__) ); 51 wp_enqueue_script( 'jquery-tab' ); 52 52 wp_deregister_script( 'lazyslider'); 53 53 wp_register_script( 'lazyslider', plugins_url('/js/slider.js', __FILE__) ); -
lazy-content-slider/tags/3.3/readme.txt
r672810 r673063 5 5 Requires at least: 2.9.2 6 6 Tested up to: 3.5.1 7 Stable tag: 3. 27 Stable tag: 3.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 92 92 = 3.1 = 93 93 Updated all code to be compliant of newer version of jQuery 94 = 3. 1=94 = 3.2 = 95 95 Small fix for arrows 96 = 3.3 = 97 Fixed auto rotation 96 98 97 99 == Changelog == … … 127 129 = 3.1 = 128 130 Updated all code to be compliant of newer version of jQuery 129 = 3. 1=131 = 3.2 = 130 132 Small fix for arrows 133 = 3.3 = 134 Fixed auto rotation -
lazy-content-slider/trunk/js/tabs.js
r672809 r673063 41 41 // start rotation 42 42 if ( ms ) { 43 this.element.bind( "tabs show", rotate );43 this.element.bind( "tabsactivate", rotate ); 44 44 this.anchors.bind( o.event + ".tabs", stop ); 45 45 rotate(); … … 47 47 } else { 48 48 clearTimeout( self.rotation ); 49 this.element.unbind( "tabs show", rotate );49 this.element.unbind( "tabsactivate", rotate ); 50 50 this.anchors.unbind( o.event + ".tabs", stop ); 51 51 delete this._rotate; -
lazy-content-slider/trunk/lzcs.php
r672810 r673063 5 5 Description: This is a content slider that shows 5 slides from a "Featured Category" 6 6 Author: Lee Thompson 7 Version: 3. 27 Version: 3.3 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' );39 36 wp_deregister_script( 'jquery-ui' ); 40 37 wp_register_script( 'jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.min.js'); … … 50 47 wp_enqueue_style( 'lazyslider' ); 51 48 } 49 wp_deregister_script( 'jquery-tab' ); 50 wp_register_script( 'jquery-tab', plugins_url('/js/tabs.js', __FILE__) ); 51 wp_enqueue_script( 'jquery-tab' ); 52 52 wp_deregister_script( 'lazyslider'); 53 53 wp_register_script( 'lazyslider', plugins_url('/js/slider.js', __FILE__) ); -
lazy-content-slider/trunk/readme.txt
r672810 r673063 5 5 Requires at least: 2.9.2 6 6 Tested up to: 3.5.1 7 Stable tag: 3. 27 Stable tag: 3.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 92 92 = 3.1 = 93 93 Updated all code to be compliant of newer version of jQuery 94 = 3. 1=94 = 3.2 = 95 95 Small fix for arrows 96 = 3.3 = 97 Fixed auto rotation 96 98 97 99 == Changelog == … … 127 129 = 3.1 = 128 130 Updated all code to be compliant of newer version of jQuery 129 = 3. 1=131 = 3.2 = 130 132 Small fix for arrows 133 = 3.3 = 134 Fixed auto rotation
Note: See TracChangeset
for help on using the changeset viewer.