Files
firefly-iii/public/js/transactions.js

34 lines
974 B
JavaScript
Raw Normal View History

2015-02-24 21:10:25 +01:00
if ($('input[name="expense_account"]').length > 0) {
$.getJSON('json/expense-accounts').success(function (data) {
$('input[name="expense_account"]').typeahead({source: data});
});
}
if ($('input[name="revenue_account"]').length > 0) {
$.getJSON('json/revenue-accounts').success(function (data) {
$('input[name="revenue_account"]').typeahead({source: data});
});
}
2015-03-27 13:16:14 +01:00
if ($('input[name="description"]').length > 0 && what != undefined) {
$.getJSON('json/transaction-journals/' + what).success(function (data) {
$('input[name="description"]').typeahead({source: data});
});
}
2015-02-24 21:10:25 +01:00
if ($('input[name="category"]').length > 0) {
$.getJSON('json/categories').success(function (data) {
$('input[name="category"]').typeahead({source: data});
});
}
2015-03-26 22:52:49 +01:00
2015-02-24 21:10:25 +01:00
$(document).ready(function () {
2015-03-26 22:52:49 +01:00
if (typeof googleTablePaged != 'undefined') {
googleTablePaged('table/transactions/' + what, 'transaction-table');
}
2015-03-27 13:20:48 +01:00
});