mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-12 04:38:06 +00:00
Moved some code.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
$(document).ready(function () {
|
||||||
|
if (typeof googleTablePaged != 'undefined') {
|
||||||
|
googleTablePaged('table/transactions/' + what, 'transaction-table');
|
||||||
|
}
|
||||||
|
|
||||||
if ($('input[name="expense_account"]').length > 0) {
|
if ($('input[name="expense_account"]').length > 0) {
|
||||||
$.getJSON('json/expense-accounts').success(function (data) {
|
$.getJSON('json/expense-accounts').success(function (data) {
|
||||||
$('input[name="expense_account"]').typeahead({source: data});
|
$('input[name="expense_account"]').typeahead({source: data});
|
||||||
@@ -15,20 +20,10 @@ if ($('input[name="description"]').length > 0 && what != undefined) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if ($('input[name="category"]').length > 0) {
|
if ($('input[name="category"]').length > 0) {
|
||||||
$.getJSON('json/categories').success(function (data) {
|
$.getJSON('json/categories').success(function (data) {
|
||||||
$('input[name="category"]').typeahead({source: data});
|
$('input[name="category"]').typeahead({source: data});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function () {
|
|
||||||
if (typeof googleTablePaged != 'undefined') {
|
|
||||||
googleTablePaged('table/transactions/' + what, 'transaction-table');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
Reference in New Issue
Block a user