mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 12:04:00 +00:00
7 lines
246 B
JavaScript
7 lines
246 B
JavaScript
![]() |
$.getJSON('json/beneficiaries').success(function (data) {
|
||
|
$('input[name="beneficiary"]').typeahead({ source: data });
|
||
|
});
|
||
|
|
||
|
$.getJSON('json/categories').success(function (data) {
|
||
|
$('input[name="category"]').typeahead({ source: data });
|
||
|
});
|