mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -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 });
|
|
}); |