Changeset 9439
- Timestamp:
- 10/31/2008 06:31:26 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/js/inline-edit-post.js
r9334 r9439 13 13 14 14 // prepare the edit row 15 qeRow.dblclick(function() { inlineEditPost.toggle(this); })16 17 18 bulkRow.dblclick(function() { inlineEditPost.revert(); })19 15 // .dblclick(function() { inlineEditPost.toggle(this); }) 16 qeRow.keyup(function(e) { if(e.which == 27) return inlineEditPost.revert(); }); 17 18 // .dblclick(function() { inlineEditPost.revert(); }) 19 bulkRow.keyup(function(e) { if (e.which == 27) return inlineEditPost.revert(); }); 20 20 21 21 $('a.cancel', qeRow).click(function() { return inlineEditPost.revert(); }); … … 26 26 27 27 // add events 28 t.rows.dblclick(function() { inlineEditPost.toggle(this); });28 // t.rows.dblclick(function() { inlineEditPost.toggle(this); }); 29 29 t.addEvents(t.rows); 30 30 -
trunk/wp-admin/js/inline-edit-tax.js
r9334 r9439 13 13 14 14 // prepare the edit row 15 row.dblclick(function() { inlineEditTax.toggle(this); })16 15 // .dblclick(function() { inlineEditTax.toggle(this); }) 16 row.keyup(function(e) { if(e.which == 27) return inlineEditTax.revert(); }); 17 17 18 18 $('a.cancel', row).click(function() { return inlineEditTax.revert(); }); … … 20 20 21 21 // add events 22 t.rows.dblclick(function() { inlineEditTax.toggle(this); });22 // t.rows.dblclick(function() { inlineEditTax.toggle(this); }); 23 23 t.addEvents(t.rows); 24 24 -
trunk/wp-includes/script-loader.php
r9437 r9439 264 264 $scripts->add( 'theme-preview', '/wp-admin/js/theme-preview.js', array( 'thickbox', 'jquery' ), '20080625' ); 265 265 266 $scripts->add( 'inline-edit-post', '/wp-admin/js/inline-edit-post.js', array( 'jquery', 'jquery-form', 'suggest' ), '200810 23' );266 $scripts->add( 'inline-edit-post', '/wp-admin/js/inline-edit-post.js', array( 'jquery', 'jquery-form', 'suggest' ), '20081031' ); 267 267 $scripts->localize( 'inline-edit-post', 'inlineEditL10n', array( 268 268 'error' => __('Error while saving the changes.') 269 269 ) ); 270 270 271 $scripts->add( 'inline-edit-tax', '/wp-admin/js/inline-edit-tax.js', array( 'jquery', 'jquery-form' ), '200810 23' );271 $scripts->add( 'inline-edit-tax', '/wp-admin/js/inline-edit-tax.js', array( 'jquery', 'jquery-form' ), '20081031' ); 272 272 $scripts->localize( 'inline-edit-tax', 'inlineEditL10n', array( 273 273 'error' => __('Error while saving the changes.')
Note: See TracChangeset
for help on using the changeset viewer.