mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Make sure we are not disabling submit buttons if upload is not triggered, to avoid disabled submit buttons after failure.
This commit is contained in:
parent
9e7ff133b5
commit
773a9410c5
@ -409,6 +409,15 @@ var et2_file = (function(){ "use strict"; return et2_inputWidget.extend(
|
|||||||
{
|
{
|
||||||
if(this.createStatus(event,file))
|
if(this.createStatus(event,file))
|
||||||
{
|
{
|
||||||
|
|
||||||
|
// Disable buttons
|
||||||
|
this.disabled_buttons = jQuery("input[type='submit'], button")
|
||||||
|
.not("[disabled]")
|
||||||
|
.attr("disabled", true)
|
||||||
|
.addClass('et2_button_ro')
|
||||||
|
.removeClass('et2_clickable')
|
||||||
|
.css('cursor', 'default');
|
||||||
|
|
||||||
// Actually start uploading
|
// Actually start uploading
|
||||||
this.resumable.upload();
|
this.resumable.upload();
|
||||||
}
|
}
|
||||||
@ -443,13 +452,6 @@ var et2_file = (function(){ "use strict"; return et2_inputWidget.extend(
|
|||||||
// Hide any previous errors
|
// Hide any previous errors
|
||||||
this.hideMessage();
|
this.hideMessage();
|
||||||
|
|
||||||
// Disable buttons
|
|
||||||
this.disabled_buttons = jQuery("input[type='submit'], button")
|
|
||||||
.not("[disabled]")
|
|
||||||
.attr("disabled", true)
|
|
||||||
.addClass('et2_button_ro')
|
|
||||||
.removeClass('et2_clickable')
|
|
||||||
.css('cursor', 'default');
|
|
||||||
|
|
||||||
event.data = this;
|
event.data = this;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user