From 943c0c48df78a10e1ca8cfe69984d557787649c6 Mon Sep 17 00:00:00 2001 From: rxi Date: Fri, 18 Apr 2014 12:35:41 +0100 Subject: [PATCH] Fixed multiple-digit indices in env browser Fixed the "fullpath" regex in the env browser's javascript so that variables with multiple-digit array indices are inserted into the input box properly when their value is clicked. --- lovebird.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lovebird.lua b/lovebird.lua index c152198..81f7d6d 100644 --- a/lovebird.lua +++ b/lovebird.lua @@ -255,7 +255,8 @@ end updateDivContent("status", "disconnected ○"); }); } - setInterval(refreshOutput, * 1000); + setInterval(refreshOutput, + * 1000); /* Environment variable view */ var envPath = ""; @@ -291,7 +292,7 @@ end k + ""; } var v = "" + x.value + "" html += "" + k + "" + v + ""; }