<!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>[15918] trunk: Fix media dialog keyPress handling.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15918">15918</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2010-10-22 19:23:00 +0000 (Fri, 22 Oct 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Fix media dialog keyPress handling. Props mdawaffe. fixes <a href="http://trac.wordpress.org/ticket/14394">#14394</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludestemplatephp">trunk/wp-admin/includes/template.php</a></li>
<li><a href="#trunkwpadminjsmediadevjs">trunk/wp-admin/js/media.dev.js</a></li>
<li><a href="#trunkwpadminjsmediajs">trunk/wp-admin/js/media.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="trunkwpadminincludestemplatephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/template.php (15917 => 15918)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/template.php        2010-10-22 19:18:33 UTC (rev 15917)
+++ trunk/wp-admin/includes/template.php        2010-10-22 19:23:00 UTC (rev 15918)
</span><span class="lines">@@ -1340,7 +1340,7 @@
</span><span class="cx">                                 &lt;?php wp_nonce_field( 'find-posts', '_ajax_nonce', false ); ?&gt;
</span><span class="cx">                                 &lt;label class=&quot;screen-reader-text&quot; for=&quot;find-posts-input&quot;&gt;&lt;?php _e( 'Search' ); ?&gt;&lt;/label&gt;
</span><span class="cx">                                 &lt;input type=&quot;text&quot; id=&quot;find-posts-input&quot; name=&quot;ps&quot; value=&quot;&quot; /&gt;
</span><del>-                                &lt;input type=&quot;button&quot; onclick=&quot;findPosts.send();&quot; value=&quot;&lt;?php esc_attr_e( 'Search' ); ?&gt;&quot; class=&quot;button&quot; /&gt;&lt;br /&gt;
</del><ins>+                                &lt;input type=&quot;button&quot; id=&quot;find-posts-search&quot; value=&quot;&lt;?php esc_attr_e( 'Search' ); ?&gt;&quot; class=&quot;button&quot; /&gt;&lt;br /&gt;
</ins><span class="cx"> 
</span><span class="cx">                                 &lt;?php
</span><span class="cx">                                 $post_types = get_post_types( array('public' =&gt; true), 'objects' );
</span><span class="lines">@@ -1356,7 +1356,7 @@
</span><span class="cx">                         &lt;div id=&quot;find-posts-response&quot;&gt;&lt;/div&gt;
</span><span class="cx">                 &lt;/div&gt;
</span><span class="cx">                 &lt;div class=&quot;find-box-buttons&quot;&gt;
</span><del>-                        &lt;input type=&quot;button&quot; class=&quot;button alignleft&quot; onclick=&quot;findPosts.close();&quot; value=&quot;&lt;?php esc_attr_e('Close'); ?&gt;&quot; /&gt;
</del><ins>+                        &lt;input id=&quot;find-posts-close&quot; type=&quot;button&quot; class=&quot;button alignleft&quot; value=&quot;&lt;?php esc_attr_e('Close'); ?&gt;&quot; /&gt;
</ins><span class="cx">                         &lt;input id=&quot;find-posts-submit&quot; type=&quot;submit&quot; class=&quot;button-primary alignright&quot; value=&quot;&lt;?php esc_attr_e('Select'); ?&gt;&quot; /&gt;
</span><span class="cx">                 &lt;/div&gt;
</span><span class="cx">         &lt;/div&gt;
</span></span></pre></div>
<a id="trunkwpadminjsmediadevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/media.dev.js (15917 => 15918)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/media.dev.js        2010-10-22 19:18:33 UTC (rev 15917)
+++ trunk/wp-admin/js/media.dev.js        2010-10-22 19:23:00 UTC (rev 15918)
</span><span class="lines">@@ -77,6 +77,14 @@
</span><span class="cx">                         if ( '' == $('#find-posts-response').html() )
</span><span class="cx">                                 e.preventDefault();
</span><span class="cx">                 });
</span><ins>+                $( '#find-posts .find-box-search :input' ).keypress( function( event ) {
+                        if ( 13 == event.which ) {
+                                findPosts.send();
+                                return false;
+                        }
+                } );
+                $( '#find-posts-search' ).click( findPosts.send );
+                $( '#find-posts-close' ).click( findPosts.close );
</ins><span class="cx">                 $('#doaction, #doaction2').click(function(e){
</span><span class="cx">                         $('select[name^=&quot;action&quot;]').each(function(){
</span><span class="cx">                                 if ( $(this).val() == 'attach' ) {
</span></span></pre></div>
<a id="trunkwpadminjsmediajs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/media.js (15917 => 15918)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/media.js        2010-10-22 19:18:33 UTC (rev 15917)
+++ trunk/wp-admin/js/media.js        2010-10-22 19:23:00 UTC (rev 15918)
</span><span class="lines">@@ -1 +1 @@
</span><del>-var findPosts;(function(a){findPosts={open:function(d,c){var b=document.documentElement.scrollTop||a(document).scrollTop();if(d&amp;&amp;c){a(&quot;#affected&quot;).attr(&quot;name&quot;,d).val(c)}a(&quot;#find-posts&quot;).show().draggable({handle:&quot;#find-posts-head&quot;}).css({top:b+50+&quot;px&quot;,left:&quot;50%&quot;,marginLeft:&quot;-250px&quot;});a(&quot;#find-posts-input&quot;).focus().keyup(function(f){if(f.which==27){findPosts.close()}});return false},close:function(){a(&quot;#find-posts-response&quot;).html(&quot;&quot;);a(&quot;#find-posts&quot;).draggable(&quot;destroy&quot;).hide()},send:function(){var b={ps:a(&quot;#find-posts-input&quot;).val(),action:&quot;find_posts&quot;,_ajax_nonce:a(&quot;#_ajax_nonce&quot;).val()};var c;a(&quot;input[@name='itemSelect[]']:checked&quot;).each(function(){c=a(this).val()});b.post_type=c;a.ajax({type:&quot;POST&quot;,url:ajaxurl,data:b,success:function(d){findPosts.show(d)},error:function(d){findPosts.error(d)}})},show:function(b){if(typeof(b)==&quot;string&quot;){this.error({responseText:b});return}var c=wpAjax.parseAjaxResponse(b);if(c.errors){this.error({responseText:wpAjax.broken})}c=c.responses[0];a(&quot;#find-posts-response&quot;).html(c.data)},error:function(b){var c=b.statusText;if(b.responseText){c=b.responseText.replace(/&lt;.[^&lt;&gt;]*?&gt;/g,&quot;&quot;)}if(c){a(&quot;#find-posts-response&quot;).html(c)}}};a(document).ready(function(){a(&quot;#find-posts-submit&quot;).click(function(b){if(&quot;&quot;==a(&quot;#find-posts-response&quot;).html()){b.preventDefault()}});a(&quot;#doaction, #doaction2&quot;).click(function(b){a('select[name^=&quot;action&quot;]').each(function(){if(a(this).val()==&quot;attach&quot;){b.preventDefault();findPosts.open()}})})})})(jQuery);
</del><span class="cx">\ No newline at end of file
</span><ins>+var findPosts;(function(a){findPosts={open:function(d,c){var b=document.documentElement.scrollTop||a(document).scrollTop();if(d&amp;&amp;c){a(&quot;#affected&quot;).attr(&quot;name&quot;,d).val(c)}a(&quot;#find-posts&quot;).show().draggable({handle:&quot;#find-posts-head&quot;}).css({top:b+50+&quot;px&quot;,left:&quot;50%&quot;,marginLeft:&quot;-250px&quot;});a(&quot;#find-posts-input&quot;).focus().keyup(function(f){if(f.which==27){findPosts.close()}});return false},close:function(){a(&quot;#find-posts-response&quot;).html(&quot;&quot;);a(&quot;#find-posts&quot;).draggable(&quot;destroy&quot;).hide()},send:function(){var b={ps:a(&quot;#find-posts-input&quot;).val(),action:&quot;find_posts&quot;,_ajax_nonce:a(&quot;#_ajax_nonce&quot;).val()};var c;a(&quot;input[@name='itemSelect[]']:checked&quot;).each(function(){c=a(this).val()});b.post_type=c;a.ajax({type:&quot;POST&quot;,url:ajaxurl,data:b,success:function(d){findPosts.show(d)},error:function(d){findPosts.error(d)}})},show:function(b){if(typeof(b)==&quot;string&quot;){this.error({responseText:b});return}var c=wpAjax.parseAjaxResponse(b);if(c.errors){this.error({responseText:wpAjax.broken})}c=c.responses[0];a(&quot;#find-posts-response&quot;).html(c.data)},error:function(b){var c=b.statusText;if(b.responseText){c=b.responseText.replace(/&lt;.[^&lt;&gt;]*?&gt;/g,&quot;&quot;)}if(c){a(&quot;#find-posts-response&quot;).html(c)}}};a(document).ready(function(){a(&quot;#find-posts-submit&quot;).click(function(b){if(&quot;&quot;==a(&quot;#find-posts-response&quot;).html()){b.preventDefault()}});a(&quot;#find-posts .find-box-search :input&quot;).keypress(function(b){if(13==b.which){findPosts.send();return false}});a(&quot;#find-posts-search&quot;).click(findPosts.send);a(&quot;#find-posts-close&quot;).click(findPosts.close);a(&quot;#doaction, #doaction2&quot;).click(function(b){a('select[name^=&quot;action&quot;]').each(function(){if(a(this).val()==&quot;attach&quot;){b.preventDefault();findPosts.open()}})})})})(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 (15917 => 15918)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/script-loader.php        2010-10-22 19:18:33 UTC (rev 15917)
+++ trunk/wp-includes/script-loader.php        2010-10-22 19:23:00 UTC (rev 15918)
</span><span class="lines">@@ -393,7 +393,7 @@
</span><span class="cx"> 
</span><span class="cx">                 $scripts-&gt;add( 'list-revisions', &quot;/wp-includes/js/wp-list-revisions$suffix.js&quot;, null, '20091223' );
</span><span class="cx"> 
</span><del>-                $scripts-&gt;add( 'media', &quot;/wp-admin/js/media$suffix.js&quot;, array( 'jquery-ui-draggable' ), '20100524' );
</del><ins>+                $scripts-&gt;add( 'media', &quot;/wp-admin/js/media$suffix.js&quot;, array( 'jquery-ui-draggable' ), '20101022' );
</ins><span class="cx">                 $scripts-&gt;add_data( 'media', 'group', 1 );
</span><span class="cx"> 
</span><span class="cx">                 $scripts-&gt;add( 'image-edit', &quot;/wp-admin/js/image-edit$suffix.js&quot;, array('jquery', 'json2', 'imgareaselect'), '20091111' );
</span></span></pre>
</div>
</div>

</body>
</html>