X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/85ad385665744d9cc3bcd939906309be7268edb3..5e031ad59895b5682d1509675cafe9f2c5081c12:/wp-admin/js/dashboard.js diff --git a/wp-admin/js/dashboard.js b/wp-admin/js/dashboard.js index 4d4eb50d..f5e37e62 100644 --- a/wp-admin/js/dashboard.js +++ b/wp-admin/js/dashboard.js @@ -64,6 +64,9 @@ jQuery(document).ready( function($) { /* QuickPress */ quickPressLoad = function() { var act = $('#quickpost-action'), t; + + $( '#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]' ).prop( 'disabled' , false ); + t = $('#quick-press').submit( function() { $('#dashboard_quick_press #publishing-action .spinner').show(); $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').prop('disabled', true); @@ -123,13 +126,11 @@ jQuery(document).ready( function($) { $( '.meta-box-sortables' ).sortable( 'option', 'containment', 'document' ); - // Activity Widget - $( '.show-more a' ).on( 'click', function(e) { - $( this ).fadeOut().closest('.activity-block').find( 'li.hidden' ).fadeIn().removeClass( 'hidden' ); - e.preventDefault(); - }); - function autoResizeTextarea() { + if ( document.documentMode && document.documentMode < 9 ) { + return; + } + // Add a hidden div. We'll copy over the text from the textarea to measure its height. $('body').append( '' ); @@ -179,8 +180,8 @@ jQuery(document).ready( function($) { editorHeight = cloneHeight; } - // No scrollbars as we change height - editor.css('overflow-y', 'hidden'); + // No scrollbars as we change height, not for IE < 9 + editor.css('overflow', 'hidden'); $this.css('height', editorHeight + 'px'); });