Ticket #27760: 27760.2.diff
| File 27760.2.diff, 1.4 KB (added by , 12 years ago) |
|---|
-
src/wp-admin/includes/dashboard.php
456 456 457 457 <div class="textarea-wrap" id="description-wrap"> 458 458 <label class="screen-reader-text prompt" for="content" id="content-prompt-text"><?php _e( 'What’s on your mind?' ); ?></label> 459 <textarea name="content" id="content" class="mceEditor" rows="3" cols="15" ></textarea>459 <textarea name="content" id="content" class="mceEditor" rows="3" cols="15" autocomplete="off"></textarea> 460 460 </div> 461 461 462 462 <p class="submit"> -
src/wp-admin/js/dashboard.js
64 64 /* QuickPress */ 65 65 quickPressLoad = function() { 66 66 var act = $('#quickpost-action'), t; 67 // Force the Save Draft button to start out enabled 68 // See https://core.trac.wordpress.org/ticket/27760 69 $( '#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]' ).prop( 'disabled' , false ); 67 70 t = $('#quick-press').submit( function() { 68 71 $('#dashboard_quick_press #publishing-action .spinner').show(); 69 72 $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').prop('disabled', true);