mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-20 11:33:59 +00:00
Fix for #967
This commit is contained in:
2
public/js/ff/firefly.js
vendored
2
public/js/ff/firefly.js
vendored
@@ -26,7 +26,7 @@ $(function () {
|
|||||||
configAccounting(currencySymbol);
|
configAccounting(currencySymbol);
|
||||||
|
|
||||||
// on submit of form, disable any button in form:
|
// on submit of form, disable any button in form:
|
||||||
$('form.form-horizontal').on('submit', function () {
|
$('form.form-horizontal:not(.nodisablebutton)').on('submit', function () {
|
||||||
$('button[type="submit"]').prop('disabled', true);
|
$('button[type="submit"]').prop('disabled', true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@@ -7,7 +7,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<form class="form-horizontal" id="report-form" action="{{ route('reports.index.post') }}" method="post">
|
<form class="form-horizontal nodisablebutton" id="report-form" action="{{ route('reports.index.post') }}" method="post">
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="box-header with-border">
|
<div class="box-header with-border">
|
||||||
|
Reference in New Issue
Block a user