Changeset 23444
- Timestamp:
- 02/16/2013 05:46:12 PM (10 years ago)
- Location:
- trunk/wp-admin/js
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/js/inline-edit-post.js
r23354 r23444 43 43 44 44 // add events 45 $(' a.editinline').live('click', function(){45 $('#the-list').on('click', 'a.editinline', function(){ 46 46 inlineEditPost.edit(this); 47 47 return false; -
trunk/wp-admin/js/inline-edit-tax.js
r22396 r23444 9 9 t.what = '#'+t.type+'-'; 10 10 11 $(' .editinline').live('click', function(){11 $('#the-list').on('click', 'a.editinline', function(){ 12 12 inlineEditTax.edit(this); 13 13 return false; -
trunk/wp-admin/js/post.js
r23338 r23444 350 350 }); 351 351 352 $('#' + taxonomy + 'checklist li.popular-category input[type="checkbox"], #' + taxonomy + 'checklist-pop input[type="checkbox"]').live( 'click', function(){352 $('#' + taxonomy + 'checklist, #' + taxonomy + 'checklist-pop').on( 'click', 'li.popular-category input[type="checkbox"], input[type="checkbox"]', function() { 353 353 var t = $(this), c = t.is(':checked'), id = t.val(); 354 354 if ( id && t.parents('#taxonomy-'+taxonomy).length ) -
trunk/wp-admin/js/tags.js
r21592 r23444 1 1 jQuery(document).ready(function($) { 2 2 3 $(' .delete-tag').live('click', function(e){3 $('#the-list').on('click', '.delete-tag', function(e){ 4 4 var t = $(this), tr = t.parents('tr'), r = true, data; 5 5 if ( 'undefined' != showNotice )
Note: See TracChangeset
for help on using the changeset viewer.