Changeset 559101
- Timestamp:
- 06/16/2012 05:04:59 PM (14 years ago)
- Location:
- rehabtabs/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
rehabtabs.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rehabtabs/trunk/readme.txt
r529513 r559101 5 5 Tags: tabs, jQuery UI 6 6 Requires at least: 3.2.1 7 Tested up to: 3. 3.18 Stable tag: 1.1 7 Tested up to: 3.4 8 Stable tag: 1.1.1 9 9 10 10 Rehabtabs makes it easy to add pretty jQuery UI tabs to your pages, posts and custom posts using simple shortcodes. … … 46 46 == Changelog == 47 47 48 = 1.1.1 = 49 * Minor bug fix 50 48 51 = 1.1 = 49 52 * Added usage section to settings -
rehabtabs/trunk/rehabtabs.php
r529916 r559101 5 5 Plugin URI: http://vancoder.ca/plugins/rehabtabs 6 6 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 8 8 Author: vancoder 9 9 Author URI: http://vancoder.ca … … 38 38 foreach ( $tabs as $key => $tab ) { 39 39 $tab_url = ''; 40 $tab_id = sanitize_title( $tab['title'] ). $key;40 $tab_id = 'rehabtabs-' . $key; 41 41 if ( $tab['ajax'] === 'true' ) { 42 42 $tab_url = site_url() . '/' . $panels[$key]; … … 87 87 wp_enqueue_script( 'rehabtabs', WP_PLUGIN_URL . '/' . str_replace( basename( __FILE__ ), "", plugin_basename( __FILE__ ) ) . 'js/rehabtabs.packed.js' ); 88 88 wp_localize_script( 'rehabtabs', 'options_object', $data ); 89 //}90 89 } 91 90
Note: See TracChangeset
for help on using the changeset viewer.