From 9c8a54f24a1f11f60531f144d46246156f17b3be Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 10 Mar 2008 23:55:26 +0000 Subject: [PATCH] Show a message after the upload has finished but before the return HTML is finished. git-svn-id: http://svn.automattic.com/wordpress/trunk@7220 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/js/swfupload/handlers.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wp-includes/js/swfupload/handlers.js b/wp-includes/js/swfupload/handlers.js index 812567c5a..add138436 100644 --- a/wp-includes/js/swfupload/handlers.js +++ b/wp-includes/js/swfupload/handlers.js @@ -28,6 +28,9 @@ function uploadStart(fileObj) { return true; } function uploadProgress(fileObj, bytesDone, bytesTotal) { // Lengthen the progress bar jQuery('#media-item-' + fileObj.id + ' .bar').width(620*bytesDone/bytesTotal); + + if ( bytesDone== bytesTotal ) + jQuery('#media-item-' + fileObj.id + ' .bar').html('Crunching…'); } function prepareMediaItem(fileObj, serverData) { @@ -96,6 +99,7 @@ function uploadSuccess(fileObj, serverData) { jQuery('#media-item-' + fileObj.id).html(serverData); return; } + prepareMediaItem(fileObj, serverData); updateMediaForm();