dont close upload dialog if upload failed
This commit is contained in:
parent
5c995553c9
commit
f9f1a119a2
1 changed files with 17 additions and 8 deletions
|
@ -179,6 +179,7 @@ pandora.ui.uploadDialog = function(data) {
|
|||
$progress.options({progress: 0.5 + progress / 2});
|
||||
},
|
||||
done: function(data) {
|
||||
if (data.progress == 1) {
|
||||
Ox.Request.clearCache();
|
||||
if (pandora.user.ui.item == item && pandora.user.ui.itemView == 'files') {
|
||||
pandora.$ui.item.reload();
|
||||
|
@ -190,6 +191,14 @@ pandora.ui.uploadDialog = function(data) {
|
|||
}
|
||||
delete pandora.firefogg;
|
||||
that.close();
|
||||
} else {
|
||||
$status.html('Upload Failed.');
|
||||
pandora.api.log({
|
||||
text: data.responseText,
|
||||
url: '/' + item,
|
||||
line: 1
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue