From e10e570bd6c449ced3b346b58157a80ac7056001 Mon Sep 17 00:00:00 2001 From: Jason Park Date: Thu, 26 May 2016 05:44:27 -0500 Subject: [PATCH] tracers were overlapped when there is a runtime error in data --- js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/script.js b/js/script.js index 9348261..5e9cccf 100644 --- a/js/script.js +++ b/js/script.js @@ -41,9 +41,9 @@ dataEditor.on('change', function () { try { tm.deallocateAll(); eval(data); + tm.visualize(); } catch (err) { } finally { - tm.visualize(); tm.removeUnallocated(); } }); -- GitLab