]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/dashboard.dev.js
Wordpress 3.1.1-scripts
[autoinstalls/wordpress.git] / wp-admin / js / dashboard.dev.js
index aa33391c8b018a19ba59a157148a1009a7d61660..a43ffe86379da5b6c61908907540329a19c52508 100644 (file)
@@ -6,7 +6,8 @@ jQuery(document).ready( function($) {
                'dashboard_incoming_links',
                'dashboard_primary',
                'dashboard_secondary',
-               'dashboard_plugins'
+               'dashboard_plugins',
+               'dashboard_quick_press'
        ];
 
        ajaxPopulateWidgets = function(el) {
@@ -15,11 +16,11 @@ jQuery(document).ready( function($) {
                        if ( e.length ) {
                                p = e.parent();
                                setTimeout( function(){
-                                       p.load('index-extra.php?jax=' + id, '', function() {
+                                       p.load( ajaxurl.replace( '/admin-ajax.php', '' ) + '/index-extra.php?jax=' + id, '', function() {
                                                p.hide().slideDown('normal', function(){
                                                        $(this).css('display', '');
-                                                       if ( 'dashboard_plugins' == id && $.isFunction(tb_init) )
-                                                               tb_init('#dashboard_plugins a.thickbox');
+                                                       if ( 'dashboard_quick_press' == id )
+                                                               quickPressLoad();
                                                });
                                        });
                                }, i * 500 );
@@ -37,13 +38,13 @@ jQuery(document).ready( function($) {
        };
        ajaxPopulateWidgets();
 
-       postboxes.add_postbox_toggles('dashboard', { pbshow: ajaxPopulateWidgets } );
+       postboxes.add_postbox_toggles(pagenow, { pbshow: ajaxPopulateWidgets } );
 
        /* QuickPress */
        quickPressLoad = function() {
                var act = $('#quickpost-action'), t;
                t = $('#quick-press').submit( function() {
-                       $('#dashboard_quick_press h3').append( '<img src="images/wpspin_light.gif" style="margin: 0 6px 0 0; vertical-align: middle" />' );
+                       $('#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');
 
                        if ( 'post' == act.val() ) {
@@ -51,12 +52,12 @@ jQuery(document).ready( function($) {
                        }
 
                        $('#dashboard_quick_press div.inside').load( t.attr( 'action' ), t.serializeArray(), function() {
-                               $('#dashboard_quick_press h3 img').remove();
+                               $('#dashboard_quick_press #publishing-action img.waiting').css('visibility', 'hidden');
                                $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').attr('disabled','');
+                               $('#dashboard_quick_press ul').next('p').remove();
                                $('#dashboard_quick_press ul').find('li').each( function() {
                                        $('#dashboard_recent_drafts ul').prepend( this );
                                } ).end().remove();
-                               tb_init('a.thickbox');
                                quickPressLoad();
                        } );
                        return false;
@@ -65,6 +66,5 @@ jQuery(document).ready( function($) {
                $('#publish').click( function() { act.val( 'post-quickpress-publish' ); } );
 
        };
-       quickPressLoad();
 
 } );