From 247175881f7e29491ad6e045468230e4b55ba3e6 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 27 Mar 2015 13:24:04 +0100 Subject: [PATCH] Moved some code. --- public/js/transactions.js | 49 ++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 27 deletions(-) diff --git a/public/js/transactions.js b/public/js/transactions.js index 142e19a44d..9d918bef90 100644 --- a/public/js/transactions.js +++ b/public/js/transactions.js @@ -1,34 +1,29 @@ -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}); - }); -} - -if ($('input[name="description"]').length > 0 && what != undefined) { - $.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}); - }); -} - - $(document).ready(function () { if (typeof googleTablePaged != 'undefined') { googleTablePaged('table/transactions/' + what, 'transaction-table'); } + 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}); + }); + } + + if ($('input[name="description"]').length > 0 && what != undefined) { + $.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}); + }); + } }); \ No newline at end of file