Changeset 7584
- Timestamp:
- 04/01/2008 09:12:35 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/media.css
r7495 r7584 92 92 } 93 93 94 .filename { 95 display: none; 94 .filename.original { 95 z-index: 10; 96 position: absolute; 97 } 98 .crunching { 99 display: block; 100 line-height: 32px; 101 text-align: right; 102 margin-right: 5px; 96 103 } 97 104 button.dismiss { … … 217 224 min-height: 36px; 218 225 } 219 #media-upload.filename {226 .filename { 220 227 display: block; 221 228 line-height: 36px; -
trunk/wp-includes/js/swfupload/handlers.js
r7572 r7584 25 25 jQuery('#media-item-' + fileObj.id + ' .bar').width(620*bytesDone/bytesTotal); 26 26 27 if ( bytesDone == bytesTotal )28 jQuery('#media-item-' + fileObj.id + ' .bar').html('<strong style="display: block; padding-top: 9px; padding-left: 1em;">' + swfuploadL10n.crunching + '</strong>');27 if ( bytesDone == bytesTotal ) 28 jQuery('#media-item-' + fileObj.id + ' .bar').html('<strong class="crunching">' + swfuploadL10n.crunching + '</strong>'); 29 29 } 30 30 -
trunk/wp-includes/script-loader.php
r7556 r7584 88 88 ) ); 89 89 $this->add( 'swfupload-queue', '/wp-includes/js/swfupload/plugins/swfupload.queue.js', array('swfupload'), '2.0.2'); 90 $this->add( 'swfupload-handlers', '/wp-includes/js/swfupload/handlers.js', array('swfupload'), '2.0.2-200803 01');90 $this->add( 'swfupload-handlers', '/wp-includes/js/swfupload/handlers.js', array('swfupload'), '2.0.2-20080331'); 91 91 // these error messages came from the sample swfupload js, they might need changing. 92 92 $this->localize( 'swfupload-handlers', 'swfuploadL10n', array(
Note: See TracChangeset
for help on using the changeset viewer.