From dcd47dea683c794800d0333b354be84ba77ce872 Mon Sep 17 00:00:00 2001 From: tripathyr Date: Tue, 12 Apr 2022 17:34:04 +0530 Subject: [PATCH] Update main.js --- js/main.js | 4 ++++ 1 file changed, 4 insertions(+) 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]';