Remove errant commas to prevent file uploader script errors in IE7. props tsimmons. fixes #6443 for trunk
git-svn-id: http://svn.automattic.com/wordpress/trunk@7572 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1e668ea293
commit
9eeb25a302
|
@ -814,7 +814,7 @@ jQuery(function($){
|
|||
file_queue_error_handler : fileQueueError,
|
||||
file_dialog_complete_handler : fileDialogComplete,
|
||||
|
||||
debug: false,
|
||||
debug: false
|
||||
});
|
||||
$("#flash-browse-button").bind( "click", function(){swfu.selectFiles();});
|
||||
});
|
||||
|
|
|
@ -96,7 +96,7 @@ function deleteSuccess(data, textStatus) {
|
|||
jQuery('#media-item-' + this.id + ' .filename').append(' <span class="file-error">'+swfuploadL10n.deleted+'</span>').siblings('a.toggle').remove();
|
||||
jQuery('#media-item-' + this.id).children('.describe').css({backgroundColor:'#fff'}).end()
|
||||
.animate({backgroundColor:'#ffc0c0'}, {queue:false,duration:50})
|
||||
.animate({minHeight:0,height:36,}, 400, null, function(){jQuery(this).children('.describe').remove()})
|
||||
.animate({minHeight:0,height:36}, 400, null, function(){jQuery(this).children('.describe').remove()})
|
||||
.animate({backgroundColor:'#fff'}, 400)
|
||||
.animate({height:0}, 800, null, function(){jQuery(this).remove();updateMediaForm();});
|
||||
|
||||
|
|
Loading…
Reference in New Issue