Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Dec 28, 2023
1 parent 545813c commit be6bc26
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions step-web/src/main/webapp/js/step.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit be6bc26

Please sign in to comment.