Remove errant commas to prevent file uploader script errors in IE7. props tsimmons. fixes #6443 for trunk

git-svn-id: https://develop.svn.wordpress.org/trunk@7572 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2008-03-30 06:11:30 +00:00
parent 261a876e31
commit dcc47cfaaa
2 changed files with 2 additions and 2 deletions

View File

@ -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();});
});

View File

@ -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();});