]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/dashboard.dev.js
Wordpress 3.2
[autoinstalls/wordpress.git] / wp-admin / js / dashboard.dev.js
index a43ffe86379da5b6c61908907540329a19c52508..127a7bd620486b978b0e22bb311f2bb28ca7785b 100644 (file)
@@ -6,12 +6,11 @@ jQuery(document).ready( function($) {
                'dashboard_incoming_links',
                'dashboard_primary',
                'dashboard_secondary',
-               'dashboard_plugins',
-               'dashboard_quick_press'
+               'dashboard_plugins'
        ];
 
        ajaxPopulateWidgets = function(el) {
-               show = function(id, i) {
+               function show(i, id) {
                        var p, e = $('#' + id + ' div.inside:visible').find('.widget-loading');
                        if ( e.length ) {
                                p = e.parent();
@@ -19,21 +18,18 @@ jQuery(document).ready( function($) {
                                        p.load( ajaxurl.replace( '/admin-ajax.php', '' ) + '/index-extra.php?jax=' + id, '', function() {
                                                p.hide().slideDown('normal', function(){
                                                        $(this).css('display', '');
-                                                       if ( 'dashboard_quick_press' == id )
-                                                               quickPressLoad();
                                                });
                                        });
                                }, i * 500 );
                        }
                }
+
                if ( el ) {
                        el = el.toString();
                        if ( $.inArray(el, ajaxWidgets) != -1 )
-                               show(el, 0);
+                               show(0, el);
                } else {
-                       $.each( ajaxWidgets, function(i) {
-                               show(this, i);
-                       });
+                       $.each( ajaxWidgets, show );
                }
        };
        ajaxPopulateWidgets();
@@ -45,7 +41,7 @@ jQuery(document).ready( function($) {
                var act = $('#quickpost-action'), t;
                t = $('#quick-press').submit( function() {
                        $('#dashboard_quick_press #publishing-action img.waiting').css('visibility', 'visible');
-                       $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').attr('disabled','disabled');
+                       $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').prop('disabled', true);
 
                        if ( 'post' == act.val() ) {
                                act.val( 'post-quickpress-publish' );
@@ -53,7 +49,7 @@ jQuery(document).ready( function($) {
 
                        $('#dashboard_quick_press div.inside').load( t.attr( 'action' ), t.serializeArray(), function() {
                                $('#dashboard_quick_press #publishing-action img.waiting').css('visibility', 'hidden');
-                               $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').attr('disabled','');
+                               $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').prop('disabled', false);
                                $('#dashboard_quick_press ul').next('p').remove();
                                $('#dashboard_quick_press ul').find('li').each( function() {
                                        $('#dashboard_recent_drafts ul').prepend( this );
@@ -66,5 +62,6 @@ jQuery(document).ready( function($) {
                $('#publish').click( function() { act.val( 'post-quickpress-publish' ); } );
 
        };
+       quickPressLoad();
 
 } );