mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 19:01:58 +00:00
Clean up JS.
This commit is contained in:
@@ -19,7 +19,6 @@ $(document).ready(function () {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// the destination account name is always an expense account name.
|
// the destination account name is always an expense account name.
|
||||||
if ($('input[name="destination_account_name"]').length > 0) {
|
if ($('input[name="destination_account_name"]').length > 0) {
|
||||||
$.getJSON('json/expense-accounts').done(function (data) {
|
$.getJSON('json/expense-accounts').done(function (data) {
|
||||||
@@ -27,14 +26,6 @@ $(document).ready(function () {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// also for multi input
|
|
||||||
if ($('input[name="destination_account_name[]"]').length > 0) {
|
|
||||||
$.getJSON('json/expense-accounts').done(function (data) {
|
|
||||||
$('input[name="destination_account_name[]"]').typeahead({source: data});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($('input[name="tags"]').length > 0) {
|
|
||||||
$.getJSON('json/tags').done(function (data) {
|
$.getJSON('json/tags').done(function (data) {
|
||||||
|
|
||||||
var opt = {
|
var opt = {
|
||||||
@@ -49,7 +40,6 @@ $(document).ready(function () {
|
|||||||
opt
|
opt
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
|
||||||
|
|
||||||
// the source account name is always a revenue account name.
|
// the source account name is always a revenue account name.
|
||||||
if ($('input[name="source_account_name"]').length > 0) {
|
if ($('input[name="source_account_name"]').length > 0) {
|
||||||
@@ -57,50 +47,14 @@ $(document).ready(function () {
|
|||||||
$('input[name="source_account_name"]').typeahead({source: data});
|
$('input[name="source_account_name"]').typeahead({source: data});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
// also for multi-input:
|
|
||||||
if ($('input[name="source_account_name[]"]').length > 0) {
|
|
||||||
$.getJSON('json/revenue-accounts').done(function (data) {
|
|
||||||
$('input[name="source_account_name[]"]').typeahead({source: data});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// and for split:
|
|
||||||
if ($('input[name="journal_source_account_name"]').length > 0) {
|
|
||||||
$.getJSON('json/revenue-accounts').done(function (data) {
|
|
||||||
$('input[name="journal_source_account_name"]').typeahead({source: data});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if ($('input[name="description"]').length > 0 && !(typeof what === "undefined")) {
|
|
||||||
$.getJSON('json/transaction-journals/' + what).done(function (data) {
|
$.getJSON('json/transaction-journals/' + what).done(function (data) {
|
||||||
$('input[name="description"]').typeahead({source: data});
|
$('input[name="description"]').typeahead({source: data});
|
||||||
});
|
});
|
||||||
}
|
|
||||||
// also for multi input:
|
|
||||||
if ($('input[name="description[]"]').length > 0 && !(typeof what === "undefined")) {
|
|
||||||
$.getJSON('json/transaction-journals/' + what).done(function (data) {
|
|
||||||
$('input[name="description[]"]').typeahead({source: data});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// and for the (rare) journal_description:
|
|
||||||
if ($('input[name="journal_description"]').length > 0 && !(typeof what === "undefined")) {
|
|
||||||
$.getJSON('json/transaction-journals/' + what).done(function (data) {
|
|
||||||
$('input[name="journal_description"]').typeahead({source: data});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($('input[name="category"]').length > 0) {
|
|
||||||
$.getJSON('json/categories').done(function (data) {
|
$.getJSON('json/categories').done(function (data) {
|
||||||
$('input[name="category"]').typeahead({source: data});
|
$('input[name="category"]').typeahead({source: data});
|
||||||
});
|
});
|
||||||
}
|
|
||||||
|
|
||||||
// also for multi input:
|
|
||||||
if ($('input[name^="category["]').length > 0) {
|
|
||||||
$.getJSON('json/categories').done(function (data) {
|
|
||||||
$('input[name^="category["]').typeahead({source: data});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user