mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
Disable import button once it's clicked
This commit is contained in:
parent
543e6c598a
commit
344fc06315
2
public/css/built.css
vendored
2
public/css/built.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
5
resources/assets/css/style.css
vendored
5
resources/assets/css/style.css
vendored
@ -203,6 +203,11 @@ padding: 5px 10px;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.btn-info:disabled {
|
||||
background-color: #e89259 !important;
|
||||
border-color: #e89259 !important;
|
||||
}
|
||||
|
||||
/*
|
||||
.xbtn-primary {
|
||||
background-color: #34495E;
|
||||
|
@ -23,6 +23,7 @@
|
||||
<div class="panel-body">
|
||||
|
||||
{!! Former::open_for_files('/import')
|
||||
->onsubmit('return onFormSubmit(event)')
|
||||
->addClass('warn-on-exit') !!}
|
||||
|
||||
{!! Former::select('source')
|
||||
@ -50,7 +51,7 @@
|
||||
</div>
|
||||
<br/>
|
||||
|
||||
{!! Former::actions( Button::info(trans('texts.upload'))->submit()->large()->appendIcon(Icon::create('open'))) !!}
|
||||
{!! Former::actions( Button::info(trans('texts.upload'))->withAttributes(['id' => 'uploadButton'])->submit()->large()->appendIcon(Icon::create('open'))) !!}
|
||||
{!! Former::close() !!}
|
||||
|
||||
</div>
|
||||
@ -117,6 +118,11 @@
|
||||
setCheckboxesEnabled();
|
||||
});
|
||||
|
||||
function onFormSubmit() {
|
||||
$('#uploadButton').attr('disabled', true);
|
||||
return true;
|
||||
}
|
||||
|
||||
function setCheckboxesEnabled() {
|
||||
var $checkboxes = $('.entity-types input[type=checkbox]');
|
||||
var include = $('input[name=include]:checked').val()
|
||||
|
@ -20,11 +20,6 @@
|
||||
float: left;
|
||||
}
|
||||
|
||||
.btn-info:disabled {
|
||||
background-color: #e89259 !important;
|
||||
border-color: #e89259 !important;
|
||||
}
|
||||
|
||||
#scrollable-dropdown-menu .tt-menu {
|
||||
max-height: 150px;
|
||||
overflow-y: auto;
|
||||
|
Loading…
Reference in New Issue
Block a user