Changeset 798627
- Timestamp:
- 11/04/2013 03:07:57 PM (12 years ago)
- Location:
- tab-me/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
tab-me.js (modified) (3 diffs)
-
tab-me.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tab-me/trunk/readme.txt
r744207 r798627 5 5 Requires at least: 3.0.1 6 6 Tested up to: 3.4 7 Stable tag: 1.0 7 Stable tag: 1.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 45 45 == Changelog == 46 46 47 = 1.0.1 = 48 * Now multiple Tab Me tab groups will works on the same page. Thanks http://profiles.wordpress.org/flymke ! 49 47 50 = 1.0 = 48 51 * Initial version -
tab-me/trunk/tab-me.js
r778017 r798627 4 4 * Core and very simple jQuery for Tab Me Tabs 5 5 * 6 * @since 0.5 .16 * @since 0.5 7 7 */ 8 (function($){8 jQuery(document).ready(function($){ 9 9 10 10 $('.tab-me-tabs li').click(function(){ … … 13 13 14 14 function switch_tabs(obj) { 15 16 $('.tab-me-tab-content').hide();17 $('.tab-me-tabsli').removeClass("active");18 15 16 obj.parent().parent().find('.tab-me-tab-content').hide(); 17 obj.parent().find('li').removeClass("active"); 18 19 19 var id = obj.find("a", 0).attr("rel"); 20 20 … … 23 23 obj.addClass("active"); 24 24 } 25 }) (jQuery);25 }); -
tab-me/trunk/tab-me.php
r778017 r798627 4 4 Plugin URI: 5 5 Description: Provides a shortcode which allows tabbed content 6 Version: 0.56 Version: 1.0.1 7 7 Author: Micah Blu 8 8 Author URI: http://www.micahblu.com/ … … 69 69 add_shortcode('tabs', 'tabs_func'); 70 70 71 71 72 function tab_me_scripts(){ 72 73 wp_enqueue_style('tab-me-styles', plugins_url( 'tab-me.css', __FILE__) );
Note: See TracChangeset
for help on using the changeset viewer.