firefly-iii/public/js/transactions/create-edit.js

47 lines
1.5 KiB
JavaScript
Raw Normal View History

2016-01-29 11:39:50 -06:00
/*
* create-edit.js
2016-04-01 09:46:11 -05:00
* Copyright (C) 2016 thegrumpydictator@gmail.com
2016-01-29 11:39:50 -06:00
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
/* globals what:true, $, doSwitch, txt, middleCrumbName, title,button, middleCrumbUrl, piggiesLength, breadcrumbs */
$(document).ready(function () {
"use strict";
if ($('input[name="expense_account"]').length > 0) {
2016-02-04 00:30:12 -06:00
$.getJSON('json/expense-accounts').done(function (data) {
2016-01-29 11:39:50 -06:00
$('input[name="expense_account"]').typeahead({source: data});
});
}
if ($('input[name="tags"]').length > 0) {
2016-02-04 00:30:12 -06:00
$.getJSON('json/tags').done(function (data) {
2016-01-29 11:39:50 -06:00
var opt = {
typeahead: {
source: data
}
};
$('input[name="tags"]').tagsinput(
opt
);
});
}
if ($('input[name="revenue_account"]').length > 0) {
2016-02-04 00:30:12 -06:00
$.getJSON('json/revenue-accounts').done(function (data) {
2016-01-29 11:39:50 -06:00
$('input[name="revenue_account"]').typeahead({source: data});
});
}
if ($('input[name="description"]').length > 0 && what !== undefined) {
2016-02-04 00:30:12 -06:00
$.getJSON('json/transaction-journals/' + what).done(function (data) {
2016-01-29 11:39:50 -06:00
$('input[name="description"]').typeahead({source: data});
});
}
if ($('input[name="category"]').length > 0) {
2016-02-04 00:30:12 -06:00
$.getJSON('json/categories').done(function (data) {
2016-01-29 11:39:50 -06:00
$('input[name="category"]').typeahead({source: data});
});
}
});