Changeset 9437
- Timestamp:
- 10/31/2008 06:09:42 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/js/edit-comments.js
r9414 r9437 98 98 99 99 // add events 100 this.addEvents(this.rows); 100 $('#the-comment-list .column-comment > p').dblclick(function(){ 101 commentReply.toggle($(this).parent()); 102 }); 101 103 102 104 $('#doaction, #doaction2, #post-query-submit').click(function(e){ … … 109 111 addEvents : function(r) { 110 112 r.each(function() { 111 $(this). dblclick(function(){112 commentReply.toggle( this);113 $(this).find('.column-comment > p').dblclick(function(){ 114 commentReply.toggle($(this).parent()); 113 115 }); 114 116 }); -
trunk/wp-includes/script-loader.php
r9436 r9437 157 157 'strong' => __('Strong') 158 158 ) ); 159 $scripts->add( 'admin-comments', '/wp-admin/js/edit-comments.js', array('wp-lists', 'jquery-ui-resizable', 'quicktags', 'columns', 'settings-box'), '200810 16' );159 $scripts->add( 'admin-comments', '/wp-admin/js/edit-comments.js', array('wp-lists', 'jquery-ui-resizable', 'quicktags', 'columns', 'settings-box'), '20081031' ); 160 160 $scripts->localize( 'admin-comments', 'adminCommentsL10n', array( 161 161 'pending' => __('%i% pending'), // must look like: "# blah blah"
Note: See TracChangeset
for help on using the changeset viewer.