mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-05 20:10:57 +00:00
Some extra code for #1376
This commit is contained in:
18
public/v1/js/ff/budgets/edit.js
vendored
18
public/v1/js/ff/budgets/edit.js
vendored
@@ -21,4 +21,22 @@
|
||||
$(function () {
|
||||
"use strict";
|
||||
$(".content-wrapper form input[type='text']:enabled:visible:first").first().focus();
|
||||
|
||||
$('#ffInput_auto_budget_type').change(updateAutoBudget);
|
||||
|
||||
function updateAutoBudget() {
|
||||
var value = parseInt($('#ffInput_auto_budget_type').val());
|
||||
if (0 === value) {
|
||||
$('#ffInput_auto_budget_currency_id').prop('disabled', true);
|
||||
$('#ffInput_auto_budget_amount').prop('disabled', true);
|
||||
$('#ffInput_auto_budget_period').prop('disabled', true);
|
||||
return;
|
||||
}
|
||||
$('#ffInput_auto_budget_currency_id').prop('disabled', false);
|
||||
$('#ffInput_auto_budget_amount').prop('disabled', false);
|
||||
$('#ffInput_auto_budget_period').prop('disabled', false);
|
||||
}
|
||||
|
||||
updateAutoBudget();
|
||||
|
||||
});
|
Reference in New Issue
Block a user