mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Fix upload status on single uploads disappeared when upload was complete
This commit is contained in:
parent
178f72c06f
commit
68e4df3d22
@ -602,6 +602,11 @@ var et2_file = (function(){ "use strict"; return et2_inputWidget.extend(
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.options.value[key] = response.response[0].data[key];
|
this.options.value[key] = response.response[0].data[key];
|
||||||
|
// If not multiple, we already destroyed the status, so re-create it
|
||||||
|
if(!this.options.multiple)
|
||||||
|
{
|
||||||
|
this.createStatus({}, file);
|
||||||
|
}
|
||||||
if(this.progress)
|
if(this.progress)
|
||||||
{
|
{
|
||||||
jQuery("[data-file='"+name+"']",this.progress).addClass("message success");
|
jQuery("[data-file='"+name+"']",this.progress).addClass("message success");
|
||||||
|
Loading…
Reference in New Issue
Block a user