Plugin Directory

Changeset 559101


Ignore:
Timestamp:
06/16/2012 05:04:59 PM (14 years ago)
Author:
vancoder
Message:

Update to 1.1.1

Location:
rehabtabs/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • rehabtabs/trunk/readme.txt

    r529513 r559101  
    55Tags: tabs, jQuery UI
    66Requires at least: 3.2.1
    7 Tested up to: 3.3.1
    8 Stable tag: 1.1
     7Tested up to: 3.4
     8Stable tag: 1.1.1
    99
    1010Rehabtabs makes it easy to add pretty jQuery UI tabs to your pages, posts and custom posts using simple shortcodes.
     
    4646== Changelog ==
    4747
     48= 1.1.1 =
     49* Minor bug fix
     50
    4851= 1.1 =
    4952* Added usage section to settings
  • rehabtabs/trunk/rehabtabs.php

    r529916 r559101  
    55  Plugin URI: http://vancoder.ca/plugins/rehabtabs
    66  Description: Rehabtabs makes it easy to add pretty jQuery UI tabs to your pages, posts and custom posts using simple shortcodes.
    7   Version: 1.1
     7  Version: 1.1.1
    88  Author: vancoder
    99  Author URI: http://vancoder.ca
     
    3838    foreach ( $tabs as $key => $tab ) {
    3939        $tab_url = '';
    40         $tab_id = sanitize_title( $tab['title'] ) . $key;
     40        $tab_id = 'rehabtabs-' . $key;
    4141        if ( $tab['ajax'] === 'true' ) {
    4242            $tab_url = site_url() . '/' . $panels[$key];
     
    8787    wp_enqueue_script( 'rehabtabs', WP_PLUGIN_URL . '/' . str_replace( basename( __FILE__ ), "", plugin_basename( __FILE__ ) ) . 'js/rehabtabs.packed.js' );
    8888    wp_localize_script( 'rehabtabs', 'options_object', $data );
    89 //}
    9089}
    9190
Note: See TracChangeset for help on using the changeset viewer.