<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[17343] trunk:
  Fix inter-page navigating on Edit Comments screen when using keyboard shortcuts
 .</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/17343">17343</a></dd>
<dt>Author</dt> <dd>markjaquith</dd>
<dt>Date</dt> <dd>2011-01-21 20:28:41 +0000 (Fri, 21 Jan 2011)</dd>
</dl>

<h3>Log Message</h3>
<pre>Fix inter-page navigating on Edit Comments screen when using keyboard shortcuts. props garyc40. see <a href="http://trac.wordpress.org/ticket/16262">#16262</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesclasswplisttablephp">trunk/wp-admin/includes/class-wp-list-table.php</a></li>
<li><a href="#trunkwpadminjseditcommentsdevjs">trunk/wp-admin/js/edit-comments.dev.js</a></li>
<li><a href="#trunkwpadminjseditcommentsjs">trunk/wp-admin/js/edit-comments.js</a></li>
<li><a href="#trunkwpincludesscriptloaderphp">trunk/wp-includes/script-loader.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesclasswplisttablephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/class-wp-list-table.php (17342 => 17343)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/class-wp-list-table.php        2011-01-21 07:39:21 UTC (rev 17342)
+++ trunk/wp-admin/includes/class-wp-list-table.php        2011-01-21 20:28:41 UTC (rev 17343)
</span><span class="lines">@@ -478,6 +478,8 @@
</span><span class="cx">                 $current = $this-&gt;get_pagenum();
</span><span class="cx"> 
</span><span class="cx">                 $current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
</span><ins>+                
+                $current_url = remove_query_arg( array( 'hotkeys_highlight_last', 'hotkeys_highlight_first' ), $current_url );
</ins><span class="cx"> 
</span><span class="cx">                 $page_links = array();
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpadminjseditcommentsdevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/edit-comments.dev.js (17342 => 17343)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/edit-comments.dev.js        2011-01-21 07:39:21 UTC (rev 17342)
+++ trunk/wp-admin/js/edit-comments.dev.js        2011-01-21 20:28:41 UTC (rev 17343)
</span><span class="lines">@@ -495,7 +495,7 @@
</span><span class="cx">                                 var first_last, l;
</span><span class="cx"> 
</span><span class="cx">                                 first_last = 'next' == which? 'first' : 'last';
</span><del>-                                l = $('.'+which+'.page-numbers');
</del><ins>+                                l = $('.tablenav-pages .'+which+'-page:not(.disabled)');
</ins><span class="cx">                                 if (l.length)
</span><span class="cx">                                         window.location = l[0].href.replace(/\&amp;hotkeys_highlight_(first|last)=1/g, '')+'&amp;hotkeys_highlight_'+first_last+'=1';
</span><span class="cx">                         }
</span></span></pre></div>
<a id="trunkwpadminjseditcommentsjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/edit-comments.js (17342 => 17343)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/edit-comments.js        2011-01-21 07:39:21 UTC (rev 17342)
+++ trunk/wp-admin/js/edit-comments.js        2011-01-21 20:28:41 UTC (rev 17343)
</span><span class="lines">@@ -1 +1 @@
</span><del>-var theList,theExtraList,toggleWithKeyboard=false;(function(a){setCommentsList=function(){var c,e,h,l=0,g,i,d,k;c=a('.tablenav input[name=&quot;_total&quot;]',&quot;#comments-form&quot;);e=a('.tablenav input[name=&quot;_per_page&quot;]',&quot;#comments-form&quot;);h=a('.tablenav input[name=&quot;_page&quot;]',&quot;#comments-form&quot;);g=function(n,m){var o=a(&quot;#&quot;+m.element);if(o.is(&quot;.unapproved&quot;)){o.find(&quot;div.comment_status&quot;).html(&quot;0&quot;)}else{o.find(&quot;div.comment_status&quot;).html(&quot;1&quot;)}a(&quot;span.pending-count&quot;).each(function(){var p=a(this),r,q;r=p.html().replace(/[^0-9]+/g,&quot;&quot;);r=parseInt(r,10);if(isNaN(r)){return}q=a(&quot;#&quot;+m.element).is(&quot;.&quot;+m.dimClass)?1:-1;r=r+q;if(r&lt;0){r=0}p.closest(&quot;#awaiting-mod&quot;)[0==r?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);f(p,r);j()})};i=function(q,u){var w=a(q.target).attr(&quot;className&quot;),m,o,p,t,v,s,r=false;q.data._total=c.val()||0;q.data._per_page=e.val()||0;q.data._page=h.val()||0;q.data._url=document.location.href;if(w.indexOf(&quot;:trash=1&quot;)!=-1){r=&quot;trash&quot;}else{if(w.indexOf(&quot;:spam=1&quot;)!=-1){r=&quot;spam&quot;}}if(r){m=w.replace(/.*?comment-([0-9]+).*/,&quot;$1&quot;);o=a(&quot;#comment-&quot;+m);note=a(&quot;#&quot;+r+&quot;-undo-holder&quot;).html();o.find(&quot;.check-column :checkbox&quot;).attr(&quot;checked&quot;,&quot;&quot;);if(o.siblings(&quot;#replyrow&quot;).length&amp;&amp;commentReply.cid==m){commentReply.close()}if(o.is(&quot;tr&quot;)){p=o.children(&quot;:visible&quot;).length;s=a(&quot;.author strong&quot;,o).text();t=a('&lt;tr id=&quot;undo-'+m+'&quot; class=&quot;undo un'+r+'&quot; style=&quot;display:none;&quot;&gt;&lt;td colspan=&quot;'+p+'&quot;&gt;'+note+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)}else{s=a(&quot;.comment-author&quot;,o).text();t=a('&lt;div id=&quot;undo-'+m+'&quot; style=&quot;display:none;&quot; class=&quot;undo un'+r+'&quot;&gt;'+note+&quot;&lt;/div&gt;&quot;)}o.before(t);a(&quot;strong&quot;,&quot;#undo-&quot;+m).text(s+&quot; &quot;);v=a(&quot;.undo a&quot;,&quot;#undo-&quot;+m);v.attr(&quot;href&quot;,&quot;comment.php?action=un&quot;+r+&quot;comment&amp;c=&quot;+m+&quot;&amp;_wpnonce=&quot;+q.data._ajax_nonce);v.attr(&quot;className&quot;,&quot;delete:the-comment-list:comment-&quot;+m+&quot;::un&quot;+r+&quot;=1 vim-z vim-destructive&quot;);a(&quot;.avatar&quot;,o).clone().prependTo(&quot;#undo-&quot;+m+&quot; .&quot;+r+&quot;-undo-inside&quot;);v.click(function(){u.wpList.del(this);a(&quot;#undo-&quot;+m).css({backgroundColor:&quot;#ceb&quot;}).fadeOut(350,function(){a(this).remove();a(&quot;#comment-&quot;+m).css(&quot;backgroundColor&quot;,&quot;&quot;).fadeIn(300,function(){a(this).show()})});return false})}return q};d=function(m,n,o){if(n&lt;l){return}if(o){l=n}c.val(m.toString());a(&quot;span.total-type-count&quot;).each(function(){f(a(this),m)})};function j(s){var r=a(&quot;#dashboard_right_now&quot;),o,q,p,m;s=s||0;if(isNaN(s)||!r.length){return}o=a(&quot;span.total-count&quot;,r);q=a(&quot;span.approved-count&quot;,r);p=b(o);p=p+s;m=p-b(a(&quot;span.pending-count&quot;,r))-b(a(&quot;span.spam-count&quot;,r));f(o,p);f(q,m)}function b(m){var o=parseInt(m.html().replace(/[^0-9]+/g,&quot;&quot;),10);if(isNaN(o)){return 0}return o}function f(o,p){var m=&quot;&quot;;if(isNaN(p)){return}p=p&lt;1?&quot;0&quot;:p.toString();if(p.length&gt;3){while(p.length&gt;3){m=thousandsSeparator+p.substr(p.length-3)+m;p=p.substr(0,p.length-3)}p=p+m}o.html(p)}k=function(m,o){var t,p,q,v=a(o.target).parent().is(&quot;span.untrash&quot;),n=a(o.target).parent().is(&quot;span.unspam&quot;),u,s;function w(r){if(a(o.target).parent().is(&quot;span.&quot;+r)){return 1}else{if(a(&quot;#&quot;+o.element).is(&quot;.&quot;+r)){return -1}}return 0}u=w(&quot;spam&quot;);s=w(&quot;trash&quot;);if(v){s=-1}if(n){u=-1}a(&quot;span.pending-count&quot;).each(function(){var r=a(this),y=b(r),x=a(&quot;#&quot;+o.element).is(&quot;.unapproved&quot;);if(a(o.target).parent().is(&quot;span.unapprove&quot;)||((v||n)&amp;&amp;x)){y=y+1}else{if(x){y=y-1}}if(y&lt;0){y=0}r.closest(&quot;#awaiting-mod&quot;)[0==y?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);f(r,y);j()});a(&quot;span.spam-count&quot;).each(function(){var r=a(this),x=b(r)+u;f(r,x)});a(&quot;span.trash-count&quot;).each(function(){var r=a(this),x=b(r)+s;f(r,x)});if(a(&quot;#dashboard_right_now&quot;).length){q=s?-1*s:0;j(q)}else{t=c.val()?parseInt(c.val(),10):0;t=t-u-s;if(t&lt;0){t=0}if((&quot;object&quot;==typeof m)&amp;&amp;l&lt;o.parsed.responses[0].supplemental.time){p=o.parsed.responses[0].supplemental.pageLinks||&quot;&quot;;if(a.trim(p)){a(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove().end().append(a(p))}else{a(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove()}d(t,o.parsed.responses[0].supplemental.time,true)}else{d(t,m,false)}}if(!theExtraList||theExtraList.size()==0||theExtraList.children().size()==0||v||n){return}theList.get(0).wpList.add(theExtraList.children(&quot;:eq(0)&quot;).remove().clone())};theExtraList=a(&quot;#the-extra-comment-list&quot;).wpList({alt:&quot;&quot;,delColor:&quot;none&quot;,addColor:&quot;none&quot;});theList=a(&quot;#the-comment-list&quot;).wpList({alt:&quot;&quot;,delBefore:i,dimAfter:g,delAfter:k,addColor:&quot;none&quot;}).bind(&quot;wpListDelEnd&quot;,function(n,m){var o=m.element.replace(/[^0-9]+/g,&quot;&quot;);if(m.target.className.indexOf(&quot;:trash=1&quot;)!=-1||m.target.className.indexOf(&quot;:spam=1&quot;)!=-1){a(&quot;#undo-&quot;+o).fadeIn(300,function(){a(this).show()})}})};commentReply={cid:&quot;&quot;,act:&quot;&quot;,init:function(){var b=a(&quot;#replyrow&quot;);a(&quot;a.cancel&quot;,b).click(function(){return commentReply.revert()});a(&quot;a.save&quot;,b).click(function(){return commentReply.send()});a(&quot;input#author, input#author-email, input#author-url&quot;,b).keypress(function(c){if(c.which==13){commentReply.send();c.preventDefault();return false}});a(&quot;#the-comment-list .column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle(a(this).parent())});a(&quot;#doaction, #doaction2, #post-query-submit&quot;).click(function(c){if(a(&quot;#the-comment-list #replyrow&quot;).length&gt;0){commentReply.close()}});this.comments_listing=a('#comments-form &gt; input[name=&quot;comment_status&quot;]').val()||&quot;&quot;},addEvents:function(b){b.each(function(){a(this).find(&quot;.column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle(a(this).parent())})})},toggle:function(b){if(a(b).css(&quot;display&quot;)!=&quot;none&quot;){a(b).find(&quot;a.vim-q&quot;).click()}},revert:function(){if(a(&quot;#the-comment-list #replyrow&quot;).length&lt;1){return false}a(&quot;#replyrow&quot;).fadeOut(&quot;fast&quot;,function(){commentReply.close()});return false},close:function(){var b;if(this.cid){b=a(&quot;#comment-&quot;+this.cid);if(this.act==&quot;edit-comment&quot;){b.fadeIn(300,function(){b.show()}).css(&quot;backgroundColor&quot;,&quot;&quot;)}a(&quot;#replyrow&quot;).hide();a(&quot;#com-reply&quot;).append(a(&quot;#replyrow&quot;));a(&quot;#replycontent&quot;).val(&quot;&quot;);a(&quot;input&quot;,&quot;#edithead&quot;).val(&quot;&quot;);a(&quot;.error&quot;,&quot;#replysubmit&quot;).html(&quot;&quot;).hide();a(&quot;.waiting&quot;,&quot;#replysubmit&quot;).hide();if(a.browser.msie){a(&quot;#replycontainer, #replycontent&quot;).css(&quot;height&quot;,&quot;120px&quot;)}else{a(&quot;#replycontainer&quot;).resizable(&quot;destroy&quot;).css(&quot;height&quot;,&quot;120px&quot;)}this.cid=&quot;&quot;}},open:function(b,d,k){var l=this,e,f,i,g,j=a(&quot;#comment-&quot;+b);l.close();l.cid=b;e=a(&quot;#replyrow&quot;);f=a(&quot;#inline-&quot;+b);i=l.act=(k==&quot;edit&quot;)?&quot;edit-comment&quot;:&quot;replyto-comment&quot;;a(&quot;#action&quot;,e).val(i);a(&quot;#comment_post_ID&quot;,e).val(d);a(&quot;#comment_ID&quot;,e).val(b);if(k==&quot;edit&quot;){a(&quot;#author&quot;,e).val(a(&quot;div.author&quot;,f).text());a(&quot;#author-email&quot;,e).val(a(&quot;div.author-email&quot;,f).text());a(&quot;#author-url&quot;,e).val(a(&quot;div.author-url&quot;,f).text());a(&quot;#status&quot;,e).val(a(&quot;div.comment_status&quot;,f).text());a(&quot;#replycontent&quot;,e).val(a(&quot;textarea.comment&quot;,f).val());a(&quot;#edithead, #savebtn&quot;,e).show();a(&quot;#replyhead, #replybtn&quot;,e).hide();g=j.height();if(g&gt;220){if(a.browser.msie){a(&quot;#replycontainer, #replycontent&quot;,e).height(g-105)}else{a(&quot;#replycontainer&quot;,e).height(g-105)}}j.after(e).fadeOut(&quot;fast&quot;,function(){a(&quot;#replyrow&quot;).fadeIn(300,function(){a(this).show()})})}else{a(&quot;#edithead, #savebtn&quot;,e).hide();a(&quot;#replyhead, #replybtn&quot;,e).show();j.after(e);a(&quot;#replyrow&quot;).fadeIn(300,function(){a(this).show()})}if(!a.browser.msie){a(&quot;#replycontainer&quot;).resizable({handles:&quot;s&quot;,axis:&quot;y&quot;,minHeight:80,stop:function(){a(&quot;#replycontainer&quot;).width(&quot;auto&quot;)}})}setTimeout(function(){var n,h,o,c,m;n=a(&quot;#replyrow&quot;).offset().top;h=n+a(&quot;#replyrow&quot;).height();o=window.pageYOffset||document.documentElement.scrollTop;c=document.documentElement.clientHeight||self.innerHeight||0;m=o+c;if(m-20&lt;h){window.scroll(0,h-c+35)}else{if(n-20&lt;o){window.scroll(0,n-35)}}a(&quot;#replycontent&quot;).focus().keyup(function(p){if(p.which==27){commentReply.revert()}})},600);return false},send:function(){var b={};a(&quot;#replysubmit .error&quot;).hide();a(&quot;#replysubmit .waiting&quot;).show();a(&quot;#replyrow input&quot;).each(function(){b[a(this).attr(&quot;name&quot;)]=a(this).val()});b.content=a(&quot;#replycontent&quot;).val();b.id=b.comment_post_ID;b.comments_listing=this.comments_listing;b.p=a(&quot;[name=p]&quot;).val();a.ajax({type:&quot;POST&quot;,url:ajaxurl,data:b,success:function(c){commentReply.show(c)},error:function(c){commentReply.error(c)}});return false},show:function(b){var e,g,f,d;if(typeof(b)==&quot;string&quot;){this.error({responseText:b});return false}e=wpAjax.parseAjaxResponse(b);if(e.errors){this.error({responseText:wpAjax.broken});return false}e=e.responses[0];g=e.data;f=&quot;#comment-&quot;+e.id;if(&quot;edit-comment&quot;==this.act){a(f).remove()}a(g).hide();a(&quot;#replyrow&quot;).after(g);this.revert();this.addEvents(a(f));d=a(f).hasClass(&quot;unapproved&quot;)?&quot;#ffffe0&quot;:&quot;#fff&quot;;a(f).animate({backgroundColor:&quot;#CCEEBB&quot;},600).animate({backgroundColor:d},600)},error:function(b){var c=b.statusText;a(&quot;#replysubmit .waiting&quot;).hide();if(b.responseText){c=b.responseText.replace(/&lt;.[^&lt;&gt;]*?&gt;/g,&quot;&quot;)}if(c){a(&quot;#replysubmit .error&quot;).html(c).show()}}};a(document).ready(function(){var e,b,c,d;setCommentsList();commentReply.init();a(document).delegate(&quot;span.delete a.delete&quot;,&quot;click&quot;,function(){return false});if(typeof QTags!=&quot;undefined&quot;){ed_reply=new QTags(&quot;ed_reply&quot;,&quot;replycontent&quot;,&quot;replycontainer&quot;,&quot;more&quot;)}if(typeof a.table_hotkeys!=&quot;undefined&quot;){e=function(f){return function(){var h,g;h=&quot;next&quot;==f?&quot;first&quot;:&quot;last&quot;;g=a(&quot;.&quot;+f+&quot;.page-numbers&quot;);if(g.length){window.location=g[0].href.replace(/\&amp;hotkeys_highlight_(first|last)=1/g,&quot;&quot;)+&quot;&amp;hotkeys_highlight_&quot;+h+&quot;=1&quot;}}};b=function(g,f){window.location=a(&quot;span.edit a&quot;,f).attr(&quot;href&quot;)};c=function(){toggleWithKeyboard=true;a(&quot;input:checkbox&quot;,&quot;#cb&quot;).click().attr(&quot;checked&quot;,&quot;&quot;);toggleWithKeyboard=false};d=function(f){return function(){var g=a('select[name=&quot;action&quot;]');a(&quot;option[value=&quot;+f+&quot;]&quot;,g).attr(&quot;selected&quot;,&quot;selected&quot;);a(&quot;#doaction&quot;).click()}};a.table_hotkeys(a(&quot;table.widefat&quot;),[&quot;a&quot;,&quot;u&quot;,&quot;s&quot;,&quot;d&quot;,&quot;r&quot;,&quot;q&quot;,&quot;z&quot;,[&quot;e&quot;,b],[&quot;shift+x&quot;,c],[&quot;shift+a&quot;,d(&quot;approve&quot;)],[&quot;shift+s&quot;,d(&quot;spam&quot;)],[&quot;shift+d&quot;,d(&quot;delete&quot;)],[&quot;shift+t&quot;,d(&quot;trash&quot;)],[&quot;shift+z&quot;,d(&quot;untrash&quot;)],[&quot;shift+u&quot;,d(&quot;unapprove&quot;)]],{highlight_first:adminCommentsL10n.hotkeys_highlight_first,highlight_last:adminCommentsL10n.hotkeys_highlight_last,prev_page_link_cb:e(&quot;prev&quot;),next_page_link_cb:e(&quot;next&quot;)})}})})(jQuery);
</del><span class="cx">\ No newline at end of file
</span><ins>+var theList,theExtraList,toggleWithKeyboard=false;(function($){setCommentsList=function(){var totalInput,perPageInput,pageInput,lastConfidentTime=0,dimAfter,delBefore,updateTotalCount,delAfter;totalInput=$('.tablenav input[name=&quot;_total&quot;]',&quot;#comments-form&quot;);perPageInput=$('.tablenav input[name=&quot;_per_page&quot;]',&quot;#comments-form&quot;);pageInput=$('.tablenav input[name=&quot;_page&quot;]',&quot;#comments-form&quot;);dimAfter=function(r,settings){var c=$(&quot;#&quot;+settings.element);if(c.is(&quot;.unapproved&quot;)){c.find(&quot;div.comment_status&quot;).html(&quot;0&quot;)}else{c.find(&quot;div.comment_status&quot;).html(&quot;1&quot;)}$(&quot;span.pending-count&quot;).each(function(){var a=$(this),n,dif;n=a.html().replace(/[^0-9]+/g,&quot;&quot;);n=parseInt(n,10);if(isNaN(n)){return}dif=$(&quot;#&quot;+settings.element).is(&quot;.&quot;+settings.dimClass)?1:-1;n=n+dif;if(n&lt;0){n=0}a.closest(&quot;#awaiting-mod&quot;)[0==n?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);updateCount(a,n);dashboardTotals()})};delBefore=function(settings,list){var cl=$(settings.target).attr(&quot;className&quot;),id,el,n,h,a,author,action=false;settings.data._total=totalInput.val()||0;settings.data._per_page=perPageInput.val()||0;settings.data._page=pageInput.val()||0;settings.data._url=document.location.href;if(cl.indexOf(&quot;:trash=1&quot;)!=-1){action=&quot;trash&quot;}else{if(cl.indexOf(&quot;:spam=1&quot;)!=-1){action=&quot;spam&quot;}}if(action){id=cl.replace(/.*?comment-([0-9]+).*/,&quot;$1&quot;);el=$(&quot;#comment-&quot;+id);note=$(&quot;#&quot;+action+&quot;-undo-holder&quot;).html();el.find(&quot;.check-column :checkbox&quot;).attr(&quot;checked&quot;,&quot;&quot;);if(el.siblings(&quot;#replyrow&quot;).length&amp;&amp;commentReply.cid==id){commentReply.close()}if(el.is(&quot;tr&quot;)){n=el.children(&quot;:visible&quot;).length;author=$(&quot;.author strong&quot;,el).text();h=$('&lt;tr id=&quot;undo-'+id+'&quot; class=&quot;undo un'+action+'&quot; style=&quot;display:none;&quot;&gt;&lt;td colspan=&quot;'+n+'&quot;&gt;'+note+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)}else{author=$(&quot;.comment-author&quot;,el).text();h=$('&lt;div id=&quot;undo-'+id+'&quot; style=&quot;display:none;&quot; class=&quot;undo un'+action+'&quot;&gt;'+note+&quot;&lt;/div&gt;&quot;)}el.before(h);$(&quot;strong&quot;,&quot;#undo-&quot;+id).text(author+&quot; &quot;);a=$(&quot;.undo a&quot;,&quot;#undo-&quot;+id);a.attr(&quot;href&quot;,&quot;comment.php?action=un&quot;+action+&quot;comment&amp;c=&quot;+id+&quot;&amp;_wpnonce=&quot;+settings.data._ajax_nonce);a.attr(&quot;className&quot;,&quot;delete:the-comment-list:comment-&quot;+id+&quot;::un&quot;+action+&quot;=1 vim-z vim-destructive&quot;);$(&quot;.avatar&quot;,el).clone().prependTo(&quot;#undo-&quot;+id+&quot; .&quot;+action+&quot;-undo-inside&quot;);a.click(function(){list.wpList.del(this);$(&quot;#undo-&quot;+id).css({backgroundColor:&quot;#ceb&quot;}).fadeOut(350,function(){$(this).remove();$(&quot;#comment-&quot;+id).css(&quot;backgroundColor&quot;,&quot;&quot;).fadeIn(300,function(){$(this).show()})});return false})}return settings};updateTotalCount=function(total,time,setConfidentTime){if(time&lt;lastConfidentTime){return}if(setConfidentTime){lastConfidentTime=time}totalInput.val(total.toString());$(&quot;span.total-type-count&quot;).each(function(){updateCount($(this),total)})};function dashboardTotals(n){var dash=$(&quot;#dashboard_right_now&quot;),total,appr,totalN,apprN;n=n||0;if(isNaN(n)||!dash.length){return}total=$(&quot;span.total-count&quot;,dash);appr=$(&quot;span.approved-count&quot;,dash);totalN=getCount(total);totalN=totalN+n;apprN=totalN-getCount($(&quot;span.pending-count&quot;,dash))-getCount($(&quot;span.spam-count&quot;,dash));updateCount(total,totalN);updateCount(appr,apprN)}function getCount(el){var n=parseInt(el.html().replace(/[^0-9]+/g,&quot;&quot;),10);if(isNaN(n)){return 0}return n}function updateCount(el,n){var n1=&quot;&quot;;if(isNaN(n)){return}n=n&lt;1?&quot;0&quot;:n.toString();if(n.length&gt;3){while(n.length&gt;3){n1=thousandsSeparator+n.substr(n.length-3)+n1;n=n.substr(0,n.length-3)}n=n+n1}el.html(n)}delAfter=function(r,settings){var total,pageLinks,N,untrash=$(settings.target).parent().is(&quot;span.untrash&quot;),unspam=$(settings.target).parent().is(&quot;span.unspam&quot;),spam,trash;function getUpdate(s){if($(settings.target).parent().is(&quot;span.&quot;+s)){return 1}else{if($(&quot;#&quot;+settings.element).is(&quot;.&quot;+s)){return -1}}return 0}spam=getUpdate(&quot;spam&quot;);trash=getUpdate(&quot;trash&quot;);if(untrash){trash=-1}if(unspam){spam=-1}$(&quot;span.pending-count&quot;).each(function(){var a=$(this),n=getCount(a),unapproved=$(&quot;#&quot;+settings.element).is(&quot;.unapproved&quot;);if($(settings.target).parent().is(&quot;span.unapprove&quot;)||((untrash||unspam)&amp;&amp;unapproved)){n=n+1}else{if(unapproved){n=n-1}}if(n&lt;0){n=0}a.closest(&quot;#awaiting-mod&quot;)[0==n?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);updateCount(a,n);dashboardTotals()});$(&quot;span.spam-count&quot;).each(function(){var a=$(this),n=getCount(a)+spam;updateCount(a,n)});$(&quot;span.trash-count&quot;).each(function(){var a=$(this),n=getCount(a)+trash;updateCount(a,n)});if($(&quot;#dashboard_right_now&quot;).length){N=trash?-1*trash:0;dashboardTotals(N)}else{total=totalInput.val()?parseInt(totalInput.val(),10):0;total=total-spam-trash;if(total&lt;0){total=0}if((&quot;object&quot;==typeof r)&amp;&amp;lastConfidentTime&lt;settings.parsed.responses[0].supplemental.time){pageLinks=settings.parsed.responses[0].supplemental.pageLinks||&quot;&quot;;if($.trim(pageLinks)){$(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove().end().append($(pageLinks))}else{$(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove()}updateTotalCount(total,settings.parsed.responses[0].supplemental.time,true)}else{updateTotalCount(total,r,false)}}if(!theExtraList||theExtraList.size()==0||theExtraList.children().size()==0||untrash||unspam){return}theList.get(0).wpList.add(theExtraList.children(&quot;:eq(0)&quot;).remove().clone())};theExtraList=$(&quot;#the-extra-comment-list&quot;).wpList({alt:&quot;&quot;,delColor:&quot;none&quot;,addColor:&quot;none&quot;});theList=$(&quot;#the-comment-list&quot;).wpList({alt:&quot;&quot;,delBefore:delBefore,dimAfter:dimAfter,delAfter:delAfter,addColor:&quot;none&quot;}).bind(&quot;wpListDelEnd&quot;,function(e,s){var id=s.element.replace(/[^0-9]+/g,&quot;&quot;);if(s.target.className.indexOf(&quot;:trash=1&quot;)!=-1||s.target.className.indexOf(&quot;:spam=1&quot;)!=-1){$(&quot;#undo-&quot;+id).fadeIn(300,function(){$(this).show()})}})};commentReply={cid:&quot;&quot;,act:&quot;&quot;,init:function(){var row=$(&quot;#replyrow&quot;);$(&quot;a.cancel&quot;,row).click(function(){return commentReply.revert()});$(&quot;a.save&quot;,row).click(function(){return commentReply.send()});$(&quot;input#author, input#author-email, input#author-url&quot;,row).keypress(function(e){if(e.which==13){commentReply.send();e.preventDefault();return false}});$(&quot;#the-comment-list .column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle($(this).parent())});$(&quot;#doaction, #doaction2, #post-query-submit&quot;).click(function(e){if($(&quot;#the-comment-list #replyrow&quot;).length&gt;0){commentReply.close()}});this.comments_listing=$('#comments-form &gt; input[name=&quot;comment_status&quot;]').val()||&quot;&quot;},addEvents:function(r){r.each(function(){$(this).find(&quot;.column-comment &gt; p&quot;).dblclick(function(){commentReply.toggle($(this).parent())})})},toggle:function(el){if($(el).css(&quot;display&quot;)!=&quot;none&quot;){$(el).find(&quot;a.vim-q&quot;).click()}},revert:function(){if($(&quot;#the-comment-list #replyrow&quot;).length&lt;1){return false}$(&quot;#replyrow&quot;).fadeOut(&quot;fast&quot;,function(){commentReply.close()});return false},close:function(){var c;if(this.cid){c=$(&quot;#comment-&quot;+this.cid);if(this.act==&quot;edit-comment&quot;){c.fadeIn(300,function(){c.show()}).css(&quot;backgroundColor&quot;,&quot;&quot;)}$(&quot;#replyrow&quot;).hide();$(&quot;#com-reply&quot;).append($(&quot;#replyrow&quot;));$(&quot;#replycontent&quot;).val(&quot;&quot;);$(&quot;input&quot;,&quot;#edithead&quot;).val(&quot;&quot;);$(&quot;.error&quot;,&quot;#replysubmit&quot;).html(&quot;&quot;).hide();$(&quot;.waiting&quot;,&quot;#replysubmit&quot;).hide();if($.browser.msie){$(&quot;#replycontainer, #replycontent&quot;).css(&quot;height&quot;,&quot;120px&quot;)}else{$(&quot;#replycontainer&quot;).resizable(&quot;destroy&quot;).css(&quot;height&quot;,&quot;120px&quot;)}this.cid=&quot;&quot;}},open:function(id,p,a){var t=this,editRow,rowData,act,h,c=$(&quot;#comment-&quot;+id);t.close();t.cid=id;editRow=$(&quot;#replyrow&quot;);rowData=$(&quot;#inline-&quot;+id);act=t.act=(a==&quot;edit&quot;)?&quot;edit-comment&quot;:&quot;replyto-comment&quot;;$(&quot;#action&quot;,editRow).val(act);$(&quot;#comment_post_ID&quot;,editRow).val(p);$(&quot;#comment_ID&quot;,editRow).val(id);if(a==&quot;edit&quot;){$(&quot;#author&quot;,editRow).val($(&quot;div.author&quot;,rowData).text());$(&quot;#author-email&quot;,editRow).val($(&quot;div.author-email&quot;,rowData).text());$(&quot;#author-url&quot;,editRow).val($(&quot;div.author-url&quot;,rowData).text());$(&quot;#status&quot;,editRow).val($(&quot;div.comment_status&quot;,rowData).text());$(&quot;#replycontent&quot;,editRow).val($(&quot;textarea.comment&quot;,rowData).val());$(&quot;#edithead, #savebtn&quot;,editRow).show();$(&quot;#replyhead, #replybtn&quot;,editRow).hide();h=c.height();if(h&gt;220){if($.browser.msie){$(&quot;#replycontainer, #replycontent&quot;,editRow).height(h-105)}else{$(&quot;#replycontainer&quot;,editRow).height(h-105)}}c.after(editRow).fadeOut(&quot;fast&quot;,function(){$(&quot;#replyrow&quot;).fadeIn(300,function(){$(this).show()})})}else{$(&quot;#edithead, #savebtn&quot;,editRow).hide();$(&quot;#replyhead, #replybtn&quot;,editRow).show();c.after(editRow);$(&quot;#replyrow&quot;).fadeIn(300,function(){$(this).show()})}if(!$.browser.msie){$(&quot;#replycontainer&quot;).resizable({handles:&quot;s&quot;,axis:&quot;y&quot;,minHeight:80,stop:function(){$(&quot;#replycontainer&quot;).width(&quot;auto&quot;)}})}setTimeout(function(){var rtop,rbottom,scrollTop,vp,scrollBottom;rtop=$(&quot;#replyrow&quot;).offset().top;rbottom=rtop+$(&quot;#replyrow&quot;).height();scrollTop=window.pageYOffset||document.documentElement.scrollTop;vp=document.documentElement.clientHeight||self.innerHeight||0;scrollBottom=scrollTop+vp;if(scrollBottom-20&lt;rbottom){window.scroll(0,rbottom-vp+35)}else{if(rtop-20&lt;scrollTop){window.scroll(0,rtop-35)}}$(&quot;#replycontent&quot;).focus().keyup(function(e){if(e.which==27){commentReply.revert()}})},600);return false},send:function(){var post={};$(&quot;#replysubmit .error&quot;).hide();$(&quot;#replysubmit .waiting&quot;).show();$(&quot;#replyrow input&quot;).each(function(){post[$(this).attr(&quot;name&quot;)]=$(this).val()});post.content=$(&quot;#replycontent&quot;).val();post.id=post.comment_post_ID;post.comments_listing=this.comments_listing;post.p=$(&quot;[name=p]&quot;).val();$.ajax({type:&quot;POST&quot;,url:ajaxurl,data:post,success:function(x){commentReply.show(x)},error:function(r){commentReply.error(r)}});return false},show:function(xml){var r,c,id,bg;if(typeof(xml)==&quot;string&quot;){this.error({responseText:xml});return false}r=wpAjax.parseAjaxResponse(xml);if(r.errors){this.error({responseText:wpAjax.broken});return false}r=r.responses[0];c=r.data;id=&quot;#comment-&quot;+r.id;if(&quot;edit-comment&quot;==this.act){$(id).remove()}$(c).hide();$(&quot;#replyrow&quot;).after(c);this.revert();this.addEvents($(id));bg=$(id).hasClass(&quot;unapproved&quot;)?&quot;#ffffe0&quot;:&quot;#fff&quot;;$(id).animate({backgroundColor:&quot;#CCEEBB&quot;},600).animate({backgroundColor:bg},600)},error:function(r){var er=r.statusText;$(&quot;#replysubmit .waiting&quot;).hide();if(r.responseText){er=r.responseText.replace(/&lt;.[^&lt;&gt;]*?&gt;/g,&quot;&quot;)}if(er){$(&quot;#replysubmit .error&quot;).html(er).show()}}};$(document).ready(function(){var make_hotkeys_redirect,edit_comment,toggle_all,make_bulk;setCommentsList();commentReply.init();$(document).delegate(&quot;span.delete a.delete&quot;,&quot;click&quot;,function(){return false});if(typeof QTags!=&quot;undefined&quot;){ed_reply=new QTags(&quot;ed_reply&quot;,&quot;replycontent&quot;,&quot;replycontainer&quot;,&quot;more&quot;)}if(typeof $.table_hotkeys!=&quot;undefined&quot;){make_hotkeys_redirect=function(which){return function(){var first_last,l;first_last=&quot;next&quot;==which?&quot;first&quot;:&quot;last&quot;;l=$(&quot;.tablenav-pages .&quot;+which+&quot;-page:not(.disabled)&quot;);if(l.length){window.location=l[0].href.replace(/\&amp;hotkeys_highlight_(first|last)=1/g,&quot;&quot;)+&quot;&amp;hotkeys_highlight_&quot;+first_last+&quot;=1&quot;}}};edit_comment=function(event,current_row){window.location=$(&quot;span.edit a&quot;,current_row).attr(&quot;href&quot;)};toggle_all=function(){toggleWithKeyboard=true;$(&quot;input:checkbox&quot;,&quot;#cb&quot;).click().attr(&quot;checked&quot;,&quot;&quot;);toggleWithKeyboard=false};make_bulk=function(value){return function(){var scope=$('select[name=&quot;action&quot;]');$(&quot;option[value=&quot;+value+&quot;]&quot;,scope).attr(&quot;selected&quot;,&quot;selected&quot;);$(&quot;#doaction&quot;).click()}};$.table_hotkeys($(&quot;table.widefat&quot;),[&quot;a&quot;,&quot;u&quot;,&quot;s&quot;,&quot;d&quot;,&quot;r&quot;,&quot;q&quot;,&quot;z&quot;,[&quot;e&quot;,edit_comment],[&quot;shift+x&quot;,toggle_all],[&quot;shift+a&quot;,make_bulk(&quot;approve&quot;)],[&quot;shift+s&quot;,make_bulk(&quot;spam&quot;)],[&quot;shift+d&quot;,make_bulk(&quot;delete&quot;)],[&quot;shift+t&quot;,make_bulk(&quot;trash&quot;)],[&quot;shift+z&quot;,make_bulk(&quot;untrash&quot;)],[&quot;shift+u&quot;,make_bulk(&quot;unapprove&quot;)]],{highlight_first:adminCommentsL10n.hotkeys_highlight_first,highlight_last:adminCommentsL10n.hotkeys_highlight_last,prev_page_link_cb:make_hotkeys_redirect(&quot;prev&quot;),next_page_link_cb:make_hotkeys_redirect(&quot;next&quot;)})}})})(jQuery);
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesscriptloaderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/script-loader.php (17342 => 17343)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/script-loader.php        2011-01-21 07:39:21 UTC (rev 17342)
+++ trunk/wp-includes/script-loader.php        2011-01-21 20:28:41 UTC (rev 17343)
</span><span class="lines">@@ -299,7 +299,7 @@
</span><span class="cx">                 $scripts-&gt;add( 'admin-custom-fields', &quot;/wp-admin/js/custom-fields$suffix.js&quot;, array('wp-lists'), '20090106' );
</span><span class="cx">                 $scripts-&gt;add_data( 'admin-custom-fields', 'group', 1 );
</span><span class="cx"> 
</span><del>-                $scripts-&gt;add( 'admin-comments', &quot;/wp-admin/js/edit-comments$suffix.js&quot;, array('wp-lists', 'jquery-ui-resizable', 'quicktags'), '20110118' );
</del><ins>+                $scripts-&gt;add( 'admin-comments', &quot;/wp-admin/js/edit-comments$suffix.js&quot;, array('wp-lists', 'jquery-ui-resizable', 'quicktags'), '20110121' );
</ins><span class="cx">                 $scripts-&gt;add_data( 'admin-comments', 'group', 1 );
</span><span class="cx">                 $scripts-&gt;localize( 'admin-comments', 'adminCommentsL10n', array(
</span><span class="cx">                         'hotkeys_highlight_first' =&gt; isset($_GET['hotkeys_highlight_first']),
</span></span></pre>
</div>
</div>

</body>
</html>