mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06: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 });
|
|
}); |