firefly-iii/public/js/transactions.js

41 lines
1.3 KiB
JavaScript
Raw Normal View History

2015-05-24 13:41:14 -05:00
/* globals what, $ */
2015-02-24 14:10:25 -06:00
$(document).ready(function () {
2015-05-24 13:41:14 -05:00
"use strict";
2015-03-27 07:24:04 -05:00
if ($('input[name="expense_account"]').length > 0) {
$.getJSON('json/expense-accounts').success(function (data) {
$('input[name="expense_account"]').typeahead({source: data});
});
}
2015-04-28 03:36:13 -05:00
if ($('input[name="tags"]').length > 0) {
$.getJSON('json/tags').success(function (data) {
var opt = {
typeahead: {
source: data
}
};
$('input[name="tags"]').tagsinput(
opt
);
});
}
2015-03-27 07:24:04 -05:00
if ($('input[name="revenue_account"]').length > 0) {
$.getJSON('json/revenue-accounts').success(function (data) {
$('input[name="revenue_account"]').typeahead({source: data});
});
}
2015-05-24 11:22:41 -05:00
if ($('input[name="description"]').length > 0 && what !== undefined) {
2015-03-27 07:24:04 -05:00
$.getJSON('json/transaction-journals/' + what).success(function (data) {
$('input[name="description"]').typeahead({source: data});
});
}
if ($('input[name="category"]').length > 0) {
$.getJSON('json/categories').success(function (data) {
$('input[name="category"]').typeahead({source: data});
});
}
2015-03-26 16:52:49 -05:00
2015-03-27 07:20:48 -05:00
});