Changeset 638420
- Timestamp:
- 12/13/2012 10:41:08 AM (13 years ago)
- Location:
- custom-taxonomy-creator/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
wck-ctc.php (modified) (1 diff)
-
wordpress-creation-kit-api/wordpress-creation-kit.css (modified) (1 diff)
-
wordpress-creation-kit-api/wordpress-creation-kit.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-taxonomy-creator/trunk/readme.txt
r512366 r638420 5 5 Tags: taxonomy creator, custom taxonomy creator, custom taxonomy, taxonomy, custom taxonomy builder, taxonomy builder 6 6 Requires at least: 3.1 7 Tested up to: 3. 3.18 Stable tag: 1.0 7 Tested up to: 3.5 8 Stable tag: 1.0.1 9 9 10 10 With WCK Taxonomy Creator you can create and edit custom taxonomies and attach them to post types. … … 45 45 1. Taxonomy Creator UI: screenshot-1.jpg 46 46 2. Taxonomy listing: screenshot-2.jpg 47 48 == Changelog == 49 50 = 1.0.1 = 51 * Compatible with WordPress 3.5 -
custom-taxonomy-creator/trunk/wck-ctc.php
r512366 r638420 4 4 Description: Creates Custom taxonomies 5 5 Author: Reflection Media, Madalin Ungureanu 6 Version: 1.0 6 Version: 1.0.1 7 7 Author URI: http://www.reflectionmedia.ro 8 8 -
custom-taxonomy-creator/trunk/wordpress-creation-kit-api/wordpress-creation-kit.css
r512366 r638420 64 64 65 65 .wck-edit .button-secondary{ 66 padding: 3px15px;66 padding:0 15px; 67 67 } 68 68 -
custom-taxonomy-creator/trunk/wordpress-creation-kit-api/wordpress-creation-kit.js
r512366 r638420 172 172 jQuery('#container_'+value).parent().css({'opacity':'0.4', 'position':'relative'}).append('<div id="mb-ajax-loading"></div>'); 173 173 174 jQuery( '#container_' + value + " tbody" ).sortable("disable"); 174 if( jQuery( '#container_' + value + " tbody" ).hasClass('ui-sortable') ) 175 jQuery( '#container_' + value + " tbody" ).sortable("disable"); 175 176 176 177 jQuery.post( ajaxurl , { action:"wck_show_update"+value, meta:value, id:id, element_id:element_id, _ajax_nonce:nonce}, function(response) { … … 236 237 jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() }); 237 238 238 jQuery( '#container_' + value + " tbody" ).sortable("enable"); 239 if( jQuery( '#container_' + value + " tbody" ).hasClass('ui-sortable') ) 240 jQuery( '#container_' + value + " tbody" ).sortable("enable"); 239 241 240 242 jQuery('#container_'+value).parent().css('opacity','1');
Note: See TracChangeset
for help on using the changeset viewer.