Uploader: fix check for error message send from async-upload on failed uploads, improve styling it a bit, props trepmal, SergeyBiryukov, fixes #20445
git-svn-id: http://svn.automattic.com/wordpress/trunk@20580 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
df7bd632f2
commit
b6b321a203
@ -3687,14 +3687,14 @@ abbr.required {
|
|||||||
.media-upload-form .media-item.error p,
|
.media-upload-form .media-item.error p,
|
||||||
.media-item .error-div {
|
.media-item .error-div {
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
font-size: 12px;
|
margin: 5px 10px;
|
||||||
margin: 10px;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.media-item .error-div a.dismiss {
|
.media-item .error-div a.dismiss {
|
||||||
|
display: block;
|
||||||
float: right;
|
float: right;
|
||||||
padding-left: 15px;
|
margin: 5px 4px 0 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*------------------------------------------------------------------------------
|
/*------------------------------------------------------------------------------
|
||||||
|
@ -83,7 +83,7 @@ function uploadSuccess(fileObj, serverData) {
|
|||||||
serverData = serverData.replace(/^<pre>(\d+)<\/pre>$/, '$1');
|
serverData = serverData.replace(/^<pre>(\d+)<\/pre>$/, '$1');
|
||||||
|
|
||||||
// if async-upload returned an error message, place it in the media item div and return
|
// if async-upload returned an error message, place it in the media item div and return
|
||||||
if ( serverData.match('media-upload-error') ) {
|
if ( serverData.match(/media-upload-error|error-div/) ) {
|
||||||
item.html(serverData);
|
item.html(serverData);
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user