<!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, #msg p { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul { 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>[12050] trunk: Smoooth animations for comment move to trash and undo,
  see #4529</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/12050">12050</a></dd>
<dt>Author</dt> <dd>azaozz</dd>
<dt>Date</dt> <dd>2009-10-18 05:59:03 +0000 (Sun, 18 Oct 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Smoooth animations for comment move to trash and undo, see <a href="http://trac.wordpress.org/ticket/4529">#4529</a></pre>

<h3>Modified Paths</h3>
<ul>
<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="#trunkwpincludesjswplistsdevjs">trunk/wp-includes/js/wp-lists.dev.js</a></li>
<li><a href="#trunkwpincludesjswplistsjs">trunk/wp-includes/js/wp-lists.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="trunkwpadminjseditcommentsdevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/edit-comments.dev.js (12049 => 12050)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/edit-comments.dev.js        2009-10-18 05:51:30 UTC (rev 12049)
+++ trunk/wp-admin/js/edit-comments.dev.js        2009-10-18 05:59:03 UTC (rev 12050)
</span><span class="lines">@@ -54,7 +54,6 @@
</span><span class="cx">                         }
</span><span class="cx"> 
</span><span class="cx">                         el.before(h);
</span><del>-                        h.fadeIn(400);
</del><span class="cx"> 
</span><span class="cx">                         $('strong', '#trashundo-' + id).html(author);
</span><span class="cx">                         a = $('a.undo-trash', '#trashundo-' + id);
</span><span class="lines">@@ -65,7 +64,7 @@
</span><span class="cx">                                 list.wpList.del(this);
</span><span class="cx">                                 $('#trashundo-' + id).fadeOut(250, function(){
</span><span class="cx">                                         $(this).remove();
</span><del>-                                        $('#comment-' + id).css('backgroundColor', '').fadeIn(400);
</del><ins>+                                        $('#comment-' + id).css('backgroundColor', '').fadeIn(300);
</ins><span class="cx">                                 });
</span><span class="cx">                                 return false;
</span><span class="cx">                         });
</span><span class="lines">@@ -203,8 +202,13 @@
</span><span class="cx">         };
</span><span class="cx"> 
</span><span class="cx">         theExtraList = $('#the-extra-comment-list').wpList( { alt: '', delColor: 'none', addColor: 'none' } );
</span><del>-        theList = $('#the-comment-list').wpList( { alt: '', delBefore: delBefore, dimAfter: dimAfter, delAfter: delAfter, addColor: 'none' } );
</del><ins>+        theList = $('#the-comment-list').wpList( { alt: '', delBefore: delBefore, dimAfter: dimAfter, delAfter: delAfter, addColor: 'none' } )
+                .bind('wpListDelEnd', function(e, s){
+                        var id = s.element.replace(/[^0-9]+/g, '');
</ins><span class="cx"> 
</span><ins>+                        if ( s.target.className.indexOf(':trash=1') != -1 )
+                                $('#trashundo-' + id).fadeIn(300);
+                });
</ins><span class="cx"> };
</span><span class="cx"> 
</span><span class="cx"> commentReply = {
</span></span></pre></div>
<a id="trunkwpadminjseditcommentsjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/edit-comments.js (12049 => 12050)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/edit-comments.js        2009-10-18 05:51:30 UTC (rev 12049)
+++ trunk/wp-admin/js/edit-comments.js        2009-10-18 05:59:03 UTC (rev 12050)
</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,t){var w=a(q.target).attr(&quot;className&quot;),m,o,p,s,u,v,r;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){m=w.replace(/.*?comment-([0-9]+).*/,&quot;$1&quot;);o=a(&quot;#comment-&quot;+m);note=a(&quot;#undo-holder&quot;).html();if(o.is(&quot;tr&quot;)){p=o.children(&quot;:visible&quot;).length;r=a(&quot;.author strong&quot;,o).html();s=a('&lt;tr id=&quot;trashundo-'+m+'&quot; style=&quot;display:none;&quot;&gt;&lt;td class=&quot;trash-undo&quot; colspan=&quot;'+p+'&quot;&gt;'+note+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)}else{r=a(&quot;.comment-author&quot;,o).html();s=a('&lt;div id=&quot;trashundo-'+m+'&quot; style=&quot;display:none;&quot; class=&quot;trash-undo&quot;&gt;'+note+&quot;&lt;/div&gt;&quot;)}o.before(s);s.fadeIn(400);a(&quot;strong&quot;,&quot;#trashundo-&quot;+m).html(r);u=a(&quot;a.undo-trash&quot;,&quot;#trashundo-&quot;+m);u.attr(&quot;href&quot;,&quot;comment.php?action=untrashcomment&amp;c=&quot;+m+&quot;&amp;_ajax_nonce=&quot;+q.data._ajax_nonce);u.attr(&quot;className&quot;,&quot;delete:the-comment-list:comment-&quot;+m+&quot;::untrash=1 vim-z vim-destructive&quot;);u.click(function(){t.wpList.del(this);a(&quot;#trashundo-&quot;+m).fadeOut(250,function(){a(this).remove();a(&quot;#comment-&quot;+m).css(&quot;backgroundColor&quot;,&quot;&quot;).fadeIn(400)});return false});v=window.setTimeout(function(){a(&quot;#trashundo-&quot;+m).fadeOut(&quot;slow&quot;,function(){a(this).remove()})},200000)}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);m=b(q);if(p){p=p+s;m=p-b(a(&quot;span.pending-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(m,o){if(isNaN(o)){return}o=o&lt;1?&quot;0&quot;:o.toString();if(o.length&gt;3){o=o.substr(0,o.length-3)+thousandsSeparator+o.substr(-3)}m.html(o)}k=function(m,n){var q,o,p,u=a(n.target).parent().is(&quot;span.untrash&quot;),t,s;function v(r){if(a(n.target).parent().is(&quot;span.&quot;+r)){return 1}else{if(a(&quot;#&quot;+n.element).is(&quot;.&quot;+r)){return -1}}return 0}t=v(&quot;spam&quot;);s=v(&quot;trash&quot;);if(u){s=-1}a(&quot;span.pending-count&quot;).each(function(){var r=a(this),x=b(r),w=a(&quot;#&quot;+n.element).is(&quot;.unapproved&quot;);if(a(n.target).parent().is(&quot;span.unapprove&quot;)||(u&amp;&amp;w)){x=x+1}else{if(w){x=x-1}}if(x&lt;0){x=0}r.closest(&quot;#awaiting-mod&quot;)[0==x?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);f(r,x);j()});a(&quot;span.spam-count&quot;).each(function(){var r=a(this),w=b(r)+t;f(r,w)});a(&quot;span.trash-count&quot;).each(function(){var r=a(this),w=b(r)+s;f(r,w)});if(a(&quot;#dashboard_right_now&quot;).length){p=t||s||0;if(p&gt;0){j(-1)}else{if(p&lt;0){j(1)}}}else{if((&quot;object&quot;==typeof m)&amp;&amp;l&lt;n.parsed.responses[0].supplemental.time){o=n.parsed.responses[0].supplemental.pageLinks||&quot;&quot;;if(a.trim(o)){a(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove().end().append(a(o))}else{a(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove()}}q=c.val()?parseInt(c.val(),10):0;q=q-t-s;if(q&lt;0){q=0}d(q,m,false)}if(theExtraList.size()==0||theExtraList.children().size()==0||u){return}theList.get(0).wpList.add(theExtraList.children(&quot;:eq(0)&quot;).remove().clone());a(&quot;#get-extra-comments&quot;).submit()};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;})};commentReply={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(){a(this.o).fadeIn(&quot;fast&quot;).css(&quot;backgroundColor&quot;,&quot;&quot;);a(&quot;#com-reply&quot;).append(a(&quot;#replyrow&quot;));a(&quot;#replycontent&quot;).val(&quot;&quot;);a(&quot;#edithead input&quot;).val(&quot;&quot;);a(&quot;#replysubmit .error&quot;).html(&quot;&quot;).hide();a(&quot;#replysubmit .waiting&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;)}},open:function(i,g,c){var e=this,d,b,f;e.close();e.o=&quot;#comment-&quot;+i;a(&quot;#replyrow td&quot;).attr(&quot;colspan&quot;,a(&quot;.widefat thead th:visible&quot;).length);d=a(&quot;#replyrow&quot;),rowData=a(&quot;#inline-&quot;+i);b=e.act=(c==&quot;edit&quot;)?&quot;edit-comment&quot;:&quot;replyto-comment&quot;;a(&quot;#action&quot;,d).val(b);a(&quot;#comment_post_ID&quot;,d).val(g);a(&quot;#comment_ID&quot;,d).val(i);if(c==&quot;edit&quot;){a(&quot;#author&quot;,d).val(a(&quot;div.author&quot;,rowData).text());a(&quot;#author-email&quot;,d).val(a(&quot;div.author-email&quot;,rowData).text());a(&quot;#author-url&quot;,d).val(a(&quot;div.author-url&quot;,rowData).text());a(&quot;#status&quot;,d).val(a(&quot;div.comment_status&quot;,rowData).text());a(&quot;#replycontent&quot;,d).val(a(&quot;textarea.comment&quot;,rowData).val());a(&quot;#edithead, #savebtn&quot;,d).show();a(&quot;#replyhead, #replybtn&quot;,d).hide();f=a(e.o).height();if(f&gt;220){if(a.browser.msie){a(&quot;#replycontainer, #replycontent&quot;,d).height(f-105)}else{a(&quot;#replycontainer&quot;,d).height(f-105)}}a(e.o).after(d.hide()).fadeOut(&quot;fast&quot;,function(){a(&quot;#replyrow&quot;).fadeIn(&quot;fast&quot;)})}else{a(&quot;#edithead, #savebtn&quot;,d).hide();a(&quot;#replyhead, #replybtn&quot;,d).show();a(e.o).after(d);a(&quot;#replyrow&quot;).hide().fadeIn(&quot;fast&quot;)}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 l,j,m,h,k;l=a(&quot;#replyrow&quot;).offset().top;j=l+a(&quot;#replyrow&quot;).height();m=window.pageYOffset||document.documentElement.scrollTop;h=document.documentElement.clientHeight||self.innerHeight||0;k=m+h;if(k-20&lt;j){window.scroll(0,j-h+35)}else{if(l-20&lt;m){window.scroll(0,l-35)}}a(&quot;#replycontent&quot;).focus().keyup(function(n){if(n.which==27){commentReply.revert()}})},600);return false},send:function(){var b={};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;a.ajax({type:&quot;POST&quot;,url:wpListL10n.url,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}if(&quot;edit-comment&quot;==this.act){a(this.o).remove()}e=e.responses[0];g=e.data;a(g).hide();a(&quot;#replyrow&quot;).after(g);this.o=f=&quot;#comment-&quot;+e.id;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);a.fn.wpList.process(a(f))},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(&quot;span.delete a.delete&quot;).click(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;#comments-form&quot;).submit()}};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;markspam&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(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,t){var w=a(q.target).attr(&quot;className&quot;),m,o,p,s,u,v,r;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){m=w.replace(/.*?comment-([0-9]+).*/,&quot;$1&quot;);o=a(&quot;#comment-&quot;+m);note=a(&quot;#undo-holder&quot;).html();if(o.is(&quot;tr&quot;)){p=o.children(&quot;:visible&quot;).length;r=a(&quot;.author strong&quot;,o).html();s=a('&lt;tr id=&quot;trashundo-'+m+'&quot; style=&quot;display:none;&quot;&gt;&lt;td class=&quot;trash-undo&quot; colspan=&quot;'+p+'&quot;&gt;'+note+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)}else{r=a(&quot;.comment-author&quot;,o).html();s=a('&lt;div id=&quot;trashundo-'+m+'&quot; style=&quot;display:none;&quot; class=&quot;trash-undo&quot;&gt;'+note+&quot;&lt;/div&gt;&quot;)}o.before(s);a(&quot;strong&quot;,&quot;#trashundo-&quot;+m).html(r);u=a(&quot;a.undo-trash&quot;,&quot;#trashundo-&quot;+m);u.attr(&quot;href&quot;,&quot;comment.php?action=untrashcomment&amp;c=&quot;+m+&quot;&amp;_ajax_nonce=&quot;+q.data._ajax_nonce);u.attr(&quot;className&quot;,&quot;delete:the-comment-list:comment-&quot;+m+&quot;::untrash=1 vim-z vim-destructive&quot;);u.click(function(){t.wpList.del(this);a(&quot;#trashundo-&quot;+m).fadeOut(250,function(){a(this).remove();a(&quot;#comment-&quot;+m).css(&quot;backgroundColor&quot;,&quot;&quot;).fadeIn(300)});return false});v=window.setTimeout(function(){a(&quot;#trashundo-&quot;+m).fadeOut(&quot;slow&quot;,function(){a(this).remove()})},200000)}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);m=b(q);if(p){p=p+s;m=p-b(a(&quot;span.pending-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(m,o){if(isNaN(o)){return}o=o&lt;1?&quot;0&quot;:o.toString();if(o.length&gt;3){o=o.substr(0,o.length-3)+thousandsSeparator+o.substr(-3)}m.html(o)}k=function(m,n){var q,o,p,u=a(n.target).parent().is(&quot;span.untrash&quot;),t,s;function v(r){if(a(n.target).parent().is(&quot;span.&quot;+r)){return 1}else{if(a(&quot;#&quot;+n.element).is(&quot;.&quot;+r)){return -1}}return 0}t=v(&quot;spam&quot;);s=v(&quot;trash&quot;);if(u){s=-1}a(&quot;span.pending-count&quot;).each(function(){var r=a(this),x=b(r),w=a(&quot;#&quot;+n.element).is(&quot;.unapproved&quot;);if(a(n.target).parent().is(&quot;span.unapprove&quot;)||(u&amp;&amp;w)){x=x+1}else{if(w){x=x-1}}if(x&lt;0){x=0}r.closest(&quot;#awaiting-mod&quot;)[0==x?&quot;addClass&quot;:&quot;removeClass&quot;](&quot;count-0&quot;);f(r,x);j()});a(&quot;span.spam-count&quot;).each(function(){var r=a(this),w=b(r)+t;f(r,w)});a(&quot;span.trash-count&quot;).each(function(){var r=a(this),w=b(r)+s;f(r,w)});if(a(&quot;#dashboard_right_now&quot;).length){p=t||s||0;if(p&gt;0){j(-1)}else{if(p&lt;0){j(1)}}}else{if((&quot;object&quot;==typeof m)&amp;&amp;l&lt;n.parsed.responses[0].supplemental.time){o=n.parsed.responses[0].supplemental.pageLinks||&quot;&quot;;if(a.trim(o)){a(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove().end().append(a(o))}else{a(&quot;.tablenav-pages&quot;).find(&quot;.page-numbers&quot;).remove()}}q=c.val()?parseInt(c.val(),10):0;q=q-t-s;if(q&lt;0){q=0}d(q,m,false)}if(theExtraList.size()==0||theExtraList.children().size()==0||u){return}theList.get(0).wpList.add(theExtraList.children(&quot;:eq(0)&quot;).remove().clone());a(&quot;#get-extra-comments&quot;).submit()};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){a(&quot;#trashundo-&quot;+o).fadeIn(300)}})};commentReply={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(){a(this.o).fadeIn(&quot;fast&quot;).css(&quot;backgroundColor&quot;,&quot;&quot;);a(&quot;#com-reply&quot;).append(a(&quot;#replyrow&quot;));a(&quot;#replycontent&quot;).val(&quot;&quot;);a(&quot;#edithead input&quot;).val(&quot;&quot;);a(&quot;#replysubmit .error&quot;).html(&quot;&quot;).hide();a(&quot;#replysubmit .waiting&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;)}},open:function(i,g,c){var e=this,d,b,f;e.close();e.o=&quot;#comment-&quot;+i;a(&quot;#replyrow td&quot;).attr(&quot;colspan&quot;,a(&quot;.widefat thead th:visible&quot;).length);d=a(&quot;#replyrow&quot;),rowData=a(&quot;#inline-&quot;+i);b=e.act=(c==&quot;edit&quot;)?&quot;edit-comment&quot;:&quot;replyto-comment&quot;;a(&quot;#action&quot;,d).val(b);a(&quot;#comment_post_ID&quot;,d).val(g);a(&quot;#comment_ID&quot;,d).val(i);if(c==&quot;edit&quot;){a(&quot;#author&quot;,d).val(a(&quot;div.author&quot;,rowData).text());a(&quot;#author-email&quot;,d).val(a(&quot;div.author-email&quot;,rowData).text());a(&quot;#author-url&quot;,d).val(a(&quot;div.author-url&quot;,rowData).text());a(&quot;#status&quot;,d).val(a(&quot;div.comment_status&quot;,rowData).text());a(&quot;#replycontent&quot;,d).val(a(&quot;textarea.comment&quot;,rowData).val());a(&quot;#edithead, #savebtn&quot;,d).show();a(&quot;#replyhead, #replybtn&quot;,d).hide();f=a(e.o).height();if(f&gt;220){if(a.browser.msie){a(&quot;#replycontainer, #replycontent&quot;,d).height(f-105)}else{a(&quot;#replycontainer&quot;,d).height(f-105)}}a(e.o).after(d.hide()).fadeOut(&quot;fast&quot;,function(){a(&quot;#replyrow&quot;).fadeIn(&quot;fast&quot;)})}else{a(&quot;#edithead, #savebtn&quot;,d).hide();a(&quot;#replyhead, #replybtn&quot;,d).show();a(e.o).after(d);a(&quot;#replyrow&quot;).hide().fadeIn(&quot;fast&quot;)}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 l,j,m,h,k;l=a(&quot;#replyrow&quot;).offset().top;j=l+a(&quot;#replyrow&quot;).height();m=window.pageYOffset||document.documentElement.scrollTop;h=document.documentElement.clientHeight||self.innerHeight||0;k=m+h;if(k-20&lt;j){window.scroll(0,j-h+35)}else{if(l-20&lt;m){window.scroll(0,l-35)}}a(&quot;#replycontent&quot;).focus().keyup(function(n){if(n.which==27){commentReply.revert()}})},600);return false},send:function(){var b={};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;a.ajax({type:&quot;POST&quot;,url:wpListL10n.url,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}if(&quot;edit-comment&quot;==this.act){a(this.o).remove()}e=e.responses[0];g=e.data;a(g).hide();a(&quot;#replyrow&quot;).after(g);this.o=f=&quot;#comment-&quot;+e.id;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);a.fn.wpList.process(a(f))},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(&quot;span.delete a.delete&quot;).click(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;#comments-form&quot;).submit()}};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;markspam&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);
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesjswplistsdevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/js/wp-lists.dev.js (12049 => 12050)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/wp-lists.dev.js        2009-10-18 05:51:30 UTC (rev 12049)
+++ trunk/wp-includes/js/wp-lists.dev.js        2009-10-18 05:59:03 UTC (rev 12050)
</span><span class="lines">@@ -3,7 +3,7 @@
</span><span class="cx"> 
</span><span class="cx"> wpList = {
</span><span class="cx">         settings: {
</span><del>-                url: wpListL10n.url, type: 'POST',
</del><ins>+                url: ajaxurl, type: 'POST',
</ins><span class="cx">                 response: 'ajax-response',
</span><span class="cx"> 
</span><span class="cx">                 what: '',
</span><span class="lines">@@ -107,6 +107,7 @@
</span><span class="cx">                                 };
</span><span class="cx">                         }
</span><span class="cx">                         list.wpList.recolor();
</span><ins>+                        $(list).trigger( 'wpListAddEnd', [ s, list.wpList ] );
</ins><span class="cx">                         wpList.clear.call(list,'#' + s.element);
</span><span class="cx">                 };
</span><span class="cx"> 
</span><span class="lines">@@ -116,7 +117,7 @@
</span><span class="cx"> 
</span><span class="cx">         ajaxDel: function( e, s ) {
</span><span class="cx">                 e = $(e); s = s || {};
</span><del>-                var list = this, cls = wpList.parseClass(e,'delete'), element, anim;
</del><ins>+                var list = this, cls = wpList.parseClass(e,'delete'), element;
</ins><span class="cx">                 s = wpList.pre.call( list, e, s, 'delete' );
</span><span class="cx"> 
</span><span class="cx">                 s.element = cls[2] || s.element || null;
</span><span class="lines">@@ -143,14 +144,13 @@
</span><span class="cx">                 element = $('#' + s.element);
</span><span class="cx"> 
</span><span class="cx">                 if ( 'none' != s.delColor ) {
</span><del>-                        anim = 'slideUp';
-                        if ( element.css( 'display' ).match(/table/) )
-                                anim = 'fadeOut'; // Can't slideup table rows and other table elements.  Known jQuery bug
-                        element
-                                .animate( { backgroundColor: s.delColor }, 'fast'  )[anim]( 'fast' )
-                                .queue( function() { list.wpList.recolor(); $(this).dequeue(); } );
</del><ins>+                        element.css( 'backgroundColor', s.delColor ).fadeOut( 350, function(){
+                                list.wpList.recolor();
+                                $(list).trigger( 'wpListDelEnd', [ s, list.wpList ] );
+                        });
</ins><span class="cx">                 } else {
</span><span class="cx">                         list.wpList.recolor();
</span><ins>+                        $(list).trigger( 'wpListDelEnd', [ s, list.wpList ] );
</ins><span class="cx">                 }
</span><span class="cx"> 
</span><span class="cx">                 s.success = function(r) {
</span><span class="lines">@@ -213,7 +213,9 @@
</span><span class="cx">                         element
</span><span class="cx">                                 .animate( { backgroundColor: dimColor }, 'fast' )
</span><span class="cx">                                 .queue( function() { element.toggleClass(s.dimClass); $(this).dequeue(); } )
</span><del>-                                .animate( { backgroundColor: color }, { complete: function() { $(this).css( 'backgroundColor', '' ); } } );
</del><ins>+                                .animate( { backgroundColor: color }, { complete: function() { $(this).css( 'backgroundColor', '' ); $(list).trigger( 'wpListDimEnd', [ s, list.wpList ] ); } } );
+                } else {
+                        $(list).trigger( 'wpListDimEnd', [ s, list.wpList ] );
</ins><span class="cx">                 }
</span><span class="cx"> 
</span><span class="cx">                 if ( !s.data._ajax_nonce ) { return true; }
</span></span></pre></div>
<a id="trunkwpincludesjswplistsjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/js/wp-lists.js (12049 => 12050)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/wp-lists.js        2009-10-18 05:51:30 UTC (rev 12049)
+++ trunk/wp-includes/js/wp-lists.js        2009-10-18 05:59:03 UTC (rev 12050)
</span><span class="lines">@@ -1 +1 @@
</span><del>-(function(b){var a={add:&quot;ajaxAdd&quot;,del:&quot;ajaxDel&quot;,dim:&quot;ajaxDim&quot;,process:&quot;process&quot;,recolor:&quot;recolor&quot;},c;c={settings:{url:wpListL10n.url,type:&quot;POST&quot;,response:&quot;ajax-response&quot;,what:&quot;&quot;,alt:&quot;alternate&quot;,altOffset:0,addColor:null,delColor:null,dimAddColor:null,dimDelColor:null,confirm:null,addBefore:null,addAfter:null,delBefore:null,delAfter:null,dimBefore:null,dimAfter:null},nonce:function(g,f){var d=wpAjax.unserialize(g.attr(&quot;href&quot;));return f.nonce||d._ajax_nonce||b(&quot;#&quot;+f.element+&quot; input[name=_ajax_nonce]&quot;).val()||d._wpnonce||b(&quot;#&quot;+f.element+&quot; input[name=_wpnonce]&quot;).val()||0},parseClass:function(h,f){var i=[],d;try{d=b(h).attr(&quot;class&quot;)||&quot;&quot;;d=d.match(new RegExp(f+&quot;:[\\S]+&quot;));if(d){i=d[0].split(&quot;:&quot;)}}catch(g){}return i},pre:function(i,g,d){var f,h;g=b.extend({},this.wpList.settings,{element:null,nonce:0,target:i.get(0)},g||{});if(b.isFunction(g.confirm)){if(&quot;add&quot;!=d){f=b(&quot;#&quot;+g.element).css(&quot;backgroundColor&quot;);b(&quot;#&quot;+g.element).css(&quot;backgroundColor&quot;,&quot;#FF9966&quot;)}h=g.confirm.call(this,i,g,d,f);if(&quot;add&quot;!=d){b(&quot;#&quot;+g.element).css(&quot;backgroundColor&quot;,f)}if(!h){return false}}return g},ajaxAdd:function(j,f){j=b(j);f=f||{};var h=this,d=c.parseClass(j,&quot;add&quot;),k,g,i;f=c.pre.call(h,j,f,&quot;add&quot;);f.element=d[2]||j.attr(&quot;id&quot;)||f.element||null;if(d[3]){f.addColor=&quot;#&quot;+d[3]}else{f.addColor=f.addColor||&quot;#FFFF33&quot;}if(!f){return false}if(!j.is(&quot;[class^=add:&quot;+h.id+&quot;:]&quot;)){return !c.add.call(h,j,f)}if(!f.element){return true}f.action=&quot;add-&quot;+f.what;f.nonce=c.nonce(j,f);k=b(&quot;#&quot;+f.element+&quot; :input&quot;).not(&quot;[name=_ajax_nonce], [name=_wpnonce], [name=action]&quot;);g=wpAjax.validateForm(&quot;#&quot;+f.element);if(!g){return false}f.data=b.param(b.extend({_ajax_nonce:f.nonce,action:f.action},wpAjax.unserialize(d[4]||&quot;&quot;)));i=b.isFunction(k.fieldSerialize)?k.fieldSerialize():k.serialize();if(i){f.data+=&quot;&amp;&quot;+i}if(b.isFunction(f.addBefore)){f=f.addBefore(f);if(!f){return true}}if(!f.data.match(/_ajax_nonce=[a-f0-9]+/)){return true}f.success=function(l){var e=wpAjax.parseAjaxResponse(l,f.response,f.element),m;if(!e||e.errors){return false}if(true===e){return true}jQuery.each(e.responses,function(){c.add.call(h,this.data,b.extend({},f,{pos:this.position||0,id:this.id||0,oldId:this.oldId||null}))});if(b.isFunction(f.addAfter)){m=this.complete;this.complete=function(n,o){var p=b.extend({xml:n,status:o,parsed:e},f);f.addAfter(l,p);if(b.isFunction(m)){m(n,o)}}}h.wpList.recolor();c.clear.call(h,&quot;#&quot;+f.element)};b.ajax(f);return false},ajaxDel:function(j,g){j=b(j);g=g||{};var i=this,d=c.parseClass(j,&quot;delete&quot;),f,h;g=c.pre.call(i,j,g,&quot;delete&quot;);g.element=d[2]||g.element||null;if(d[3]){g.delColor=&quot;#&quot;+d[3]}else{g.delColor=g.delColor||&quot;#FF3333&quot;}if(!g||!g.element){return false}g.action=&quot;delete-&quot;+g.what;g.nonce=c.nonce(j,g);g.data=b.extend({action:g.action,id:g.element.split(&quot;-&quot;).pop(),_ajax_nonce:g.nonce},wpAjax.unserialize(d[4]||&quot;&quot;));if(b.isFunction(g.delBefore)){g=g.delBefore(g,i);if(!g){return true}}if(!g.data._ajax_nonce){return true}f=b(&quot;#&quot;+g.element);if(&quot;none&quot;!=g.delColor){h=&quot;slideUp&quot;;if(f.css(&quot;display&quot;).match(/table/)){h=&quot;fadeOut&quot;}f.animate({backgroundColor:g.delColor},&quot;fast&quot;)[h](&quot;fast&quot;).queue(function(){i.wpList.recolor();b(this).dequeue()})}else{i.wpList.recolor()}g.success=function(k){var e=wpAjax.parseAjaxResponse(k,g.response,g.element),l;if(!e||e.errors){f.stop().stop().css(&quot;backgroundColor&quot;,&quot;#FF3333&quot;).show().queue(function(){i.wpList.recolor();b(this).dequeue()});return false}if(b.isFunction(g.delAfter)){l=this.complete;this.complete=function(m,n){f.queue(function(){var o=b.extend({xml:m,status:n,parsed:e},g);g.delAfter(k,o);if(b.isFunction(l)){l(m,n)}}).dequeue()}}};b.ajax(g);return false},ajaxDim:function(k,h){if(b(k).parent().css(&quot;display&quot;)==&quot;none&quot;){return false}k=b(k);h=h||{};var j=this,d=c.parseClass(k,&quot;dim&quot;),g,l,f,i;h=c.pre.call(j,k,h,&quot;dim&quot;);h.element=d[2]||h.element||null;h.dimClass=d[3]||h.dimClass||null;if(d[4]){h.dimAddColor=&quot;#&quot;+d[4]}else{h.dimAddColor=h.dimAddColor||&quot;#FFFF33&quot;}if(d[5]){h.dimDelColor=&quot;#&quot;+d[5]}else{h.dimDelColor=h.dimDelColor||&quot;#FF3333&quot;}if(!h||!h.element||!h.dimClass){return true}h.action=&quot;dim-&quot;+h.what;h.nonce=c.nonce(k,h);h.data=b.extend({action:h.action,id:h.element.split(&quot;-&quot;).pop(),dimClass:h.dimClass,_ajax_nonce:h.nonce},wpAjax.unserialize(d[6]||&quot;&quot;));if(b.isFunction(h.dimBefore)){h=h.dimBefore(h);if(!h){return true}}g=b(&quot;#&quot;+h.element);l=g.toggleClass(h.dimClass).is(&quot;.&quot;+h.dimClass);f=c.getColor(g);g.toggleClass(h.dimClass);i=l?h.dimAddColor:h.dimDelColor;if(&quot;none&quot;!=i){g.animate({backgroundColor:i},&quot;fast&quot;).queue(function(){g.toggleClass(h.dimClass);b(this).dequeue()}).animate({backgroundColor:f},{complete:function(){b(this).css(&quot;backgroundColor&quot;,&quot;&quot;)}})}if(!h.data._ajax_nonce){return true}h.success=function(m){var e=wpAjax.parseAjaxResponse(m,h.response,h.element),n;if(!e||e.errors){g.stop().stop().css(&quot;backgroundColor&quot;,&quot;#FF3333&quot;)[l?&quot;removeClass&quot;:&quot;addClass&quot;](h.dimClass).show().queue(function(){j.wpList.recolor();b(this).dequeue()});return false}if(b.isFunction(h.dimAfter)){n=this.complete;this.complete=function(o,p){g.queue(function(){var q=b.extend({xml:o,status:p,parsed:e},h);h.dimAfter(m,q);if(b.isFunction(n)){n(o,p)}}).dequeue()}}};b.ajax(h);return false},getColor:function(e){if(e.constructor==Object){e=e.get(0)}var f=e,d,g=new RegExp(&quot;rgba\\(\\s*0,\\s*0,\\s*0,\\s*0\\s*\\)&quot;,&quot;i&quot;);do{d=jQuery.curCSS(f,&quot;backgroundColor&quot;);if(d!=&quot;&quot;&amp;&amp;d!=&quot;transparent&quot;&amp;&amp;!d.match(g)||jQuery.nodeName(f,&quot;body&quot;)){break}}while(f=f.parentNode);return d||&quot;#ffffff&quot;},add:function(k,g){k=b(k);var i=b(this),d=false,j={pos:0,id:0,oldId:null},l,h,f;if(&quot;string&quot;==typeof g){g={what:g}}g=b.extend(j,this.wpList.settings,g);if(!k.size()||!g.what){return false}if(g.oldId){d=b(&quot;#&quot;+g.what+&quot;-&quot;+g.oldId)}if(g.id&amp;&amp;(g.id!=g.oldId||!d||!d.size())){b(&quot;#&quot;+g.what+&quot;-&quot;+g.id).remove()}if(d&amp;&amp;d.size()){d.before(k);d.remove()}else{if(isNaN(g.pos)){l=&quot;after&quot;;if(&quot;-&quot;==g.pos.substr(0,1)){g.pos=g.pos.substr(1);l=&quot;before&quot;}h=i.find(&quot;#&quot;+g.pos);if(1===h.size()){h[l](k)}else{i.append(k)}}else{if(g.pos&lt;0){i.prepend(k)}else{i.append(k)}}}if(g.alt){if((i.children(&quot;:visible&quot;).index(k[0])+g.altOffset)%2){k.removeClass(g.alt)}else{k.addClass(g.alt)}}if(&quot;none&quot;!=g.addColor){f=c.getColor(k);k.css(&quot;backgroundColor&quot;,g.addColor).animate({backgroundColor:f},{complete:function(){b(this).css(&quot;backgroundColor&quot;,&quot;&quot;)}})}i.each(function(){this.wpList.process(k)});return k},clear:function(h){var g=this,f,d;h=b(h);if(g.wpList&amp;&amp;h.parents(&quot;#&quot;+g.id).size()){return}h.find(&quot;:input&quot;).each(function(){if(b(this).parents(&quot;.form-no-clear&quot;).size()){return}f=this.type.toLowerCase();d=this.tagName.toLowerCase();if(&quot;text&quot;==f||&quot;password&quot;==f||&quot;textarea&quot;==d){this.value=&quot;&quot;}else{if(&quot;checkbox&quot;==f||&quot;radio&quot;==f){this.checked=false}else{if(&quot;select&quot;==d){this.selectedIndex=null}}}})},process:function(d){var e=this;b(&quot;[class^=add:&quot;+e.id+&quot;:]&quot;,d||null).filter(&quot;form&quot;).submit(function(){return e.wpList.add(this)}).end().not(&quot;form&quot;).click(function(){return e.wpList.add(this)});b(&quot;[class^=delete:&quot;+e.id+&quot;:]&quot;,d||null).click(function(){return e.wpList.del(this)});b(&quot;[class^=dim:&quot;+e.id+&quot;:]&quot;,d||null).click(function(){return e.wpList.dim(this)})},recolor:function(){var f=this,e,d;if(!f.wpList.settings.alt){return}e=b(&quot;.list-item:visible&quot;,f);if(!e.size()){e=b(f).children(&quot;:visible&quot;)}d=[&quot;:even&quot;,&quot;:odd&quot;];if(f.wpList.settings.altOffset%2){d.reverse()}e.filter(d[0]).addClass(f.wpList.settings.alt).end().filter(d[1]).removeClass(f.wpList.settings.alt)},init:function(){var d=this;d.wpList.process=function(e){d.each(function(){this.wpList.process(e)})};d.wpList.recolor=function(){d.each(function(){this.wpList.recolor()})}}};b.fn.wpList=function(d){this.each(function(){var e=this;this.wpList={settings:b.extend({},c.settings,{what:c.parseClass(this,&quot;list&quot;)[1]||&quot;&quot;},d)};b.each(a,function(g,h){e.wpList[g]=function(i,f){return c[h].call(e,i,f)}})});c.init.call(this);this.wpList.process();return this}})(jQuery);
</del><span class="cx">\ No newline at end of file
</span><ins>+(function(b){var a={add:&quot;ajaxAdd&quot;,del:&quot;ajaxDel&quot;,dim:&quot;ajaxDim&quot;,process:&quot;process&quot;,recolor:&quot;recolor&quot;},c;c={settings:{url:ajaxurl,type:&quot;POST&quot;,response:&quot;ajax-response&quot;,what:&quot;&quot;,alt:&quot;alternate&quot;,altOffset:0,addColor:null,delColor:null,dimAddColor:null,dimDelColor:null,confirm:null,addBefore:null,addAfter:null,delBefore:null,delAfter:null,dimBefore:null,dimAfter:null},nonce:function(g,f){var d=wpAjax.unserialize(g.attr(&quot;href&quot;));return f.nonce||d._ajax_nonce||b(&quot;#&quot;+f.element+&quot; input[name=_ajax_nonce]&quot;).val()||d._wpnonce||b(&quot;#&quot;+f.element+&quot; input[name=_wpnonce]&quot;).val()||0},parseClass:function(h,f){var i=[],d;try{d=b(h).attr(&quot;class&quot;)||&quot;&quot;;d=d.match(new RegExp(f+&quot;:[\\S]+&quot;));if(d){i=d[0].split(&quot;:&quot;)}}catch(g){}return i},pre:function(i,g,d){var f,h;g=b.extend({},this.wpList.settings,{element:null,nonce:0,target:i.get(0)},g||{});if(b.isFunction(g.confirm)){if(&quot;add&quot;!=d){f=b(&quot;#&quot;+g.element).css(&quot;backgroundColor&quot;);b(&quot;#&quot;+g.element).css(&quot;backgroundColor&quot;,&quot;#FF9966&quot;)}h=g.confirm.call(this,i,g,d,f);if(&quot;add&quot;!=d){b(&quot;#&quot;+g.element).css(&quot;backgroundColor&quot;,f)}if(!h){return false}}return g},ajaxAdd:function(j,f){j=b(j);f=f||{};var h=this,d=c.parseClass(j,&quot;add&quot;),k,g,i;f=c.pre.call(h,j,f,&quot;add&quot;);f.element=d[2]||j.attr(&quot;id&quot;)||f.element||null;if(d[3]){f.addColor=&quot;#&quot;+d[3]}else{f.addColor=f.addColor||&quot;#FFFF33&quot;}if(!f){return false}if(!j.is(&quot;[class^=add:&quot;+h.id+&quot;:]&quot;)){return !c.add.call(h,j,f)}if(!f.element){return true}f.action=&quot;add-&quot;+f.what;f.nonce=c.nonce(j,f);k=b(&quot;#&quot;+f.element+&quot; :input&quot;).not(&quot;[name=_ajax_nonce], [name=_wpnonce], [name=action]&quot;);g=wpAjax.validateForm(&quot;#&quot;+f.element);if(!g){return false}f.data=b.param(b.extend({_ajax_nonce:f.nonce,action:f.action},wpAjax.unserialize(d[4]||&quot;&quot;)));i=b.isFunction(k.fieldSerialize)?k.fieldSerialize():k.serialize();if(i){f.data+=&quot;&amp;&quot;+i}if(b.isFunction(f.addBefore)){f=f.addBefore(f);if(!f){return true}}if(!f.data.match(/_ajax_nonce=[a-f0-9]+/)){return true}f.success=function(l){var e=wpAjax.parseAjaxResponse(l,f.response,f.element),m;if(!e||e.errors){return false}if(true===e){return true}jQuery.each(e.responses,function(){c.add.call(h,this.data,b.extend({},f,{pos:this.position||0,id:this.id||0,oldId:this.oldId||null}))});if(b.isFunction(f.addAfter)){m=this.complete;this.complete=function(n,o){var p=b.extend({xml:n,status:o,parsed:e},f);f.addAfter(l,p);if(b.isFunction(m)){m(n,o)}}}h.wpList.recolor();b(h).trigger(&quot;wpListAddEnd&quot;,[f,h.wpList]);c.clear.call(h,&quot;#&quot;+f.element)};b.ajax(f);return false},ajaxDel:function(i,g){i=b(i);g=g||{};var h=this,d=c.parseClass(i,&quot;delete&quot;),f;g=c.pre.call(h,i,g,&quot;delete&quot;);g.element=d[2]||g.element||null;if(d[3]){g.delColor=&quot;#&quot;+d[3]}else{g.delColor=g.delColor||&quot;#FF3333&quot;}if(!g||!g.element){return false}g.action=&quot;delete-&quot;+g.what;g.nonce=c.nonce(i,g);g.data=b.extend({action:g.action,id:g.element.split(&quot;-&quot;).pop(),_ajax_nonce:g.nonce},wpAjax.unserialize(d[4]||&quot;&quot;));if(b.isFunction(g.delBefore)){g=g.delBefore(g,h);if(!g){return true}}if(!g.data._ajax_nonce){return true}f=b(&quot;#&quot;+g.element);if(&quot;none&quot;!=g.delColor){f.css(&quot;backgroundColor&quot;,g.delColor).fadeOut(350,function(){h.wpList.recolor();b(h).trigger(&quot;wpListDelEnd&quot;,[g,h.wpList])})}else{h.wpList.recolor();b(h).trigger(&quot;wpListDelEnd&quot;,[g,h.wpList])}g.success=function(j){var e=wpAjax.parseAjaxResponse(j,g.response,g.element),k;if(!e||e.errors){f.stop().stop().css(&quot;backgroundColor&quot;,&quot;#FF3333&quot;).show().queue(function(){h.wpList.recolor();b(this).dequeue()});return false}if(b.isFunction(g.delAfter)){k=this.complete;this.complete=function(l,m){f.queue(function(){var n=b.extend({xml:l,status:m,parsed:e},g);g.delAfter(j,n);if(b.isFunction(k)){k(l,m)}}).dequeue()}}};b.ajax(g);return false},ajaxDim:function(k,h){if(b(k).parent().css(&quot;display&quot;)==&quot;none&quot;){return false}k=b(k);h=h||{};var j=this,d=c.parseClass(k,&quot;dim&quot;),g,l,f,i;h=c.pre.call(j,k,h,&quot;dim&quot;);h.element=d[2]||h.element||null;h.dimClass=d[3]||h.dimClass||null;if(d[4]){h.dimAddColor=&quot;#&quot;+d[4]}else{h.dimAddColor=h.dimAddColor||&quot;#FFFF33&quot;}if(d[5]){h.dimDelColor=&quot;#&quot;+d[5]}else{h.dimDelColor=h.dimDelColor||&quot;#FF3333&quot;}if(!h||!h.element||!h.dimClass){return true}h.action=&quot;dim-&quot;+h.what;h.nonce=c.nonce(k,h);h.data=b.extend({action:h.action,id:h.element.split(&quot;-&quot;).pop(),dimClass:h.dimClass,_ajax_nonce:h.nonce},wpAjax.unserialize(d[6]||&quot;&quot;));if(b.isFunction(h.dimBefore)){h=h.dimBefore(h);if(!h){return true}}g=b(&quot;#&quot;+h.element);l=g.toggleClass(h.dimClass).is(&quot;.&quot;+h.dimClass);f=c.getColor(g);g.toggleClass(h.dimClass);i=l?h.dimAddColor:h.dimDelColor;if(&quot;none&quot;!=i){g.animate({backgroundColor:i},&quot;fast&quot;).queue(function(){g.toggleClass(h.dimClass);b(this).dequeue()}).animate({backgroundColor:f},{complete:function(){b(this).css(&quot;backgroundColor&quot;,&quot;&quot;);b(j).trigger(&quot;wpListDimEnd&quot;,[h,j.wpList])}})}else{b(j).trigger(&quot;wpListDimEnd&quot;,[h,j.wpList])}if(!h.data._ajax_nonce){return true}h.success=function(m){var e=wpAjax.parseAjaxResponse(m,h.response,h.element),n;if(!e||e.errors){g.stop().stop().css(&quot;backgroundColor&quot;,&quot;#FF3333&quot;)[l?&quot;removeClass&quot;:&quot;addClass&quot;](h.dimClass).show().queue(function(){j.wpList.recolor();b(this).dequeue()});return false}if(b.isFunction(h.dimAfter)){n=this.complete;this.complete=function(o,p){g.queue(function(){var q=b.extend({xml:o,status:p,parsed:e},h);h.dimAfter(m,q);if(b.isFunction(n)){n(o,p)}}).dequeue()}}};b.ajax(h);return false},getColor:function(e){if(e.constructor==Object){e=e.get(0)}var f=e,d,g=new RegExp(&quot;rgba\\(\\s*0,\\s*0,\\s*0,\\s*0\\s*\\)&quot;,&quot;i&quot;);do{d=jQuery.curCSS(f,&quot;backgroundColor&quot;);if(d!=&quot;&quot;&amp;&amp;d!=&quot;transparent&quot;&amp;&amp;!d.match(g)||jQuery.nodeName(f,&quot;body&quot;)){break}}while(f=f.parentNode);return d||&quot;#ffffff&quot;},add:function(k,g){k=b(k);var i=b(this),d=false,j={pos:0,id:0,oldId:null},l,h,f;if(&quot;string&quot;==typeof g){g={what:g}}g=b.extend(j,this.wpList.settings,g);if(!k.size()||!g.what){return false}if(g.oldId){d=b(&quot;#&quot;+g.what+&quot;-&quot;+g.oldId)}if(g.id&amp;&amp;(g.id!=g.oldId||!d||!d.size())){b(&quot;#&quot;+g.what+&quot;-&quot;+g.id).remove()}if(d&amp;&amp;d.size()){d.before(k);d.remove()}else{if(isNaN(g.pos)){l=&quot;after&quot;;if(&quot;-&quot;==g.pos.substr(0,1)){g.pos=g.pos.substr(1);l=&quot;before&quot;}h=i.find(&quot;#&quot;+g.pos);if(1===h.size()){h[l](k)}else{i.append(k)}}else{if(g.pos&lt;0){i.prepend(k)}else{i.append(k)}}}if(g.alt){if((i.children(&quot;:visible&quot;).index(k[0])+g.altOffset)%2){k.removeClass(g.alt)}else{k.addClass(g.alt)}}if(&quot;none&quot;!=g.addColor){f=c.getColor(k);k.css(&quot;backgroundColor&quot;,g.addColor).animate({backgroundColor:f},{complete:function(){b(this).css(&quot;backgroundColor&quot;,&quot;&quot;)}})}i.each(function(){this.wpList.process(k)});return k},clear:function(h){var g=this,f,d;h=b(h);if(g.wpList&amp;&amp;h.parents(&quot;#&quot;+g.id).size()){return}h.find(&quot;:input&quot;).each(function(){if(b(this).parents(&quot;.form-no-clear&quot;).size()){return}f=this.type.toLowerCase();d=this.tagName.toLowerCase();if(&quot;text&quot;==f||&quot;password&quot;==f||&quot;textarea&quot;==d){this.value=&quot;&quot;}else{if(&quot;checkbox&quot;==f||&quot;radio&quot;==f){this.checked=false}else{if(&quot;select&quot;==d){this.selectedIndex=null}}}})},process:function(d){var e=this;b(&quot;[class^=add:&quot;+e.id+&quot;:]&quot;,d||null).filter(&quot;form&quot;).submit(function(){return e.wpList.add(this)}).end().not(&quot;form&quot;).click(function(){return e.wpList.add(this)});b(&quot;[class^=delete:&quot;+e.id+&quot;:]&quot;,d||null).click(function(){return e.wpList.del(this)});b(&quot;[class^=dim:&quot;+e.id+&quot;:]&quot;,d||null).click(function(){return e.wpList.dim(this)})},recolor:function(){var f=this,e,d;if(!f.wpList.settings.alt){return}e=b(&quot;.list-item:visible&quot;,f);if(!e.size()){e=b(f).children(&quot;:visible&quot;)}d=[&quot;:even&quot;,&quot;:odd&quot;];if(f.wpList.settings.altOffset%2){d.reverse()}e.filter(d[0]).addClass(f.wpList.settings.alt).end().filter(d[1]).removeClass(f.wpList.settings.alt)},init:function(){var d=this;d.wpList.process=function(e){d.each(function(){this.wpList.process(e)})};d.wpList.recolor=function(){d.each(function(){this.wpList.recolor()})}}};b.fn.wpList=function(d){this.each(function(){var e=this;this.wpList={settings:b.extend({},c.settings,{what:c.parseClass(this,&quot;list&quot;)[1]||&quot;&quot;},d)};b.each(a,function(g,h){e.wpList[g]=function(i,f){return c[h].call(e,i,f)}})});c.init.call(this);this.wpList.process();return this}})(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 (12049 => 12050)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/script-loader.php        2009-10-18 05:51:30 UTC (rev 12049)
+++ trunk/wp-includes/script-loader.php        2009-10-18 05:59:03 UTC (rev 12050)
</span><span class="lines">@@ -101,11 +101,8 @@
</span><span class="cx">         $scripts-&gt;add( 'autosave', &quot;/wp-includes/js/autosave$suffix.js&quot;, array('schedule', 'wp-ajax-response'), '20091012' );
</span><span class="cx">         $scripts-&gt;add_data( 'autosave', 'group', 1 );
</span><span class="cx"> 
</span><del>-        $scripts-&gt;add( 'wp-lists', &quot;/wp-includes/js/wp-lists$suffix.js&quot;, array('wp-ajax-response'), '20091007' );
</del><ins>+        $scripts-&gt;add( 'wp-lists', &quot;/wp-includes/js/wp-lists$suffix.js&quot;, array('wp-ajax-response'), '20091017' );
</ins><span class="cx">         $scripts-&gt;add_data( 'wp-lists', 'group', 1 );
</span><del>-        $scripts-&gt;localize( 'wp-lists', 'wpListL10n', array(
-                'url' =&gt; admin_url('admin-ajax.php')
-        ) );
</del><span class="cx"> 
</span><span class="cx">         $scripts-&gt;add( 'scriptaculous-root', '/wp-includes/js/scriptaculous/wp-scriptaculous.js', array('prototype'), '1.8.0');
</span><span class="cx">         $scripts-&gt;add( 'scriptaculous-builder', '/wp-includes/js/scriptaculous/builder.js', array('scriptaculous-root'), '1.8.0');
</span><span class="lines">@@ -256,7 +253,7 @@
</span><span class="cx">                 $scripts-&gt;add( 'user-profile', &quot;/wp-admin/js/user-profile$suffix.js&quot;, array('jquery'), '20090514' );
</span><span class="cx">                 $scripts-&gt;add_data( 'user-profile', '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'), '20091008' );
</del><ins>+                $scripts-&gt;add( 'admin-comments', &quot;/wp-admin/js/edit-comments$suffix.js&quot;, array('wp-lists', 'jquery-ui-resizable', 'quicktags'), '20091017' );
</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>