]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/dashboard.dev.js
WordPress 3.4
[autoinstalls/wordpress.git] / wp-admin / js / dashboard.dev.js
index 75d4521de47d4a8c94f3664f52a76f27c29830b9..6709ba7bde6316beb2743ebbf496286ea1776a16 100644 (file)
@@ -1,6 +1,32 @@
+var ajaxWidgets, ajaxPopulateWidgets, quickPressLoad;
 
 jQuery(document).ready( function($) {
-       var ajaxWidgets, ajaxPopulateWidgets, quickPressLoad;
+       /* Dashboard Welcome Panel */
+       var welcomePanel = $('#welcome-panel'),
+               welcomePanelHide = $('#wp_welcome_panel-hide'),
+               updateWelcomePanel = function( visible ) {
+                       $.post( ajaxurl, {
+                               action: 'update-welcome-panel',
+                               visible: visible,
+                               welcomepanelnonce: $('#welcomepanelnonce').val()
+                       });
+               };
+
+       if ( welcomePanel.hasClass('hidden') && welcomePanelHide.prop('checked') )
+               welcomePanel.removeClass('hidden');
+
+       $('.welcome-panel-close, .welcome-panel-dismiss a', welcomePanel).click( function(e) {
+               e.preventDefault();
+               welcomePanel.addClass('hidden');
+               updateWelcomePanel( 0 );
+               $('#wp_welcome_panel-hide').prop('checked', false);
+       });
+
+       welcomePanelHide.click( function() {
+               welcomePanel.toggleClass('hidden', ! this.checked );
+               updateWelcomePanel( this.checked ? 1 : 0 );
+       });
+
        // These widgets are sometimes populated via ajax
        ajaxWidgets = [
                'dashboard_incoming_links',
@@ -9,34 +35,51 @@ jQuery(document).ready( function($) {
                'dashboard_plugins'
        ];
 
-       ajaxPopulateWidgets = function() {
-               $.each( ajaxWidgets, function() {
-                       var e = jQuery('#' + this + ':visible div.inside').find('.widget-loading');
-                       if ( e.size() ) { e.parent().load('index-extra.php?jax=' + this); }
-               } );
+       ajaxPopulateWidgets = function(el) {
+               function show(i, id) {
+                       var p, e = $('#' + id + ' div.inside:visible').find('.widget-loading');
+                       if ( e.length ) {
+                               p = e.parent();
+                               setTimeout( function(){
+                                       p.load( ajaxurl + '?action=dashboard-widgets&widget=' + id, '', function() {
+                                               p.hide().slideDown('normal', function(){
+                                                       $(this).css('display', '');
+                                               });
+                                       });
+                               }, i * 500 );
+                       }
+               }
+
+               if ( el ) {
+                       el = el.toString();
+                       if ( $.inArray(el, ajaxWidgets) != -1 )
+                               show(0, el);
+               } else {
+                       $.each( ajaxWidgets, show );
+               }
        };
        ajaxPopulateWidgets();
 
-       postboxes.add_postbox_toggles('dashboard', { onShow: 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" />' );
-                       $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').attr('disabled','disabled');
+                       $('#dashboard_quick_press #publishing-action img.waiting').css('visibility', 'visible');
+                       $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').prop('disabled', true);
 
                        if ( 'post' == act.val() ) {
                                act.val( 'post-quickpress-publish' );
                        }
 
                        $('#dashboard_quick_press div.inside').load( t.attr( 'action' ), t.serializeArray(), function() {
-                               $('#dashboard_quick_press h3 img').remove();
-                               $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').attr('disabled','');
+                               $('#dashboard_quick_press #publishing-action img.waiting').css('visibility', 'hidden');
+                               $('#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 );
                                } ).end().remove();
-                               tb_init('a.thickbox');
                                quickPressLoad();
                        } );
                        return false;