From be6bc26e2fc31ebdbadb55c638f2887ea4f90469 Mon Sep 17 00:00:00 2001 From: Patrick Tang <36460266+patricksptang@users.noreply.github.com> Date: Thu, 28 Dec 2023 14:15:42 -0800 Subject: [PATCH] test fix --- step-web/src/main/webapp/js/step.util.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/step-web/src/main/webapp/js/step.util.js b/step-web/src/main/webapp/js/step.util.js index b2b3681333..c31ea62e2d 100644 --- a/step-web/src/main/webapp/js/step.util.js +++ b/step-web/src/main/webapp/js/step.util.js @@ -3876,8 +3876,10 @@ step.util = { for (var k = 0; k < morphArray.length; k++) { var currentMorph = morphArray[k]; var morphLowerCase = currentMorph.toLowerCase(); - if ((morphLowerCase.indexOf("strongsmorph:") > -1) || (morphLowerCase.indexOf("strongmorph:") > -1) || (morphLowerCase.indexOf("tos:") > -1)) - continue; + if ((morphLowerCase.indexOf("strongsmorph:") > -1) || (morphLowerCase.indexOf("strongmorph:") > -1) || (morphLowerCase.indexOf("tos:") > -1)) { + callProcessQuickInfo(resultJson, callBack1Param); + return; + } var pos = morphLowerCase.search("robinson:"); // need to check to see if this is still used if (pos > -1) currentMorph = currentMorph.substring(pos+9); $.getJSON("/html/lexicon/" + additionalPath + currentMorph + ".json", function(jsonVar) {