diff --git a/js/main.js b/js/main.js index 974245a..4de9f07 100644 --- a/js/main.js +++ b/js/main.js @@ -9,6 +9,7 @@ $(document).ready(function() { MyTransactions(); load_messages(); run_OrderMatcingAlgorithm(); + load_fresh_table_data(); $('[data-toggle="popover"]').popover(); }); @@ -218,6 +219,9 @@ function get_my_balance() { }); } + + + // function to check if JSON data is array or not function isArray(what) { return Object.prototype.toString.call(what) === '[object Array]';