Skip to content

Commit

Permalink
Rename label
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Aug 12, 2024
1 parent ebd550d commit 8662a37
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions step-web/src/main/webapp/js/search_selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ step.searchSelect = {
// with GREEK. HEBREW_MEANINGS are displayed with HEBREW.
searchTypeCode: [TEXT_SEARCH, SUBJECT_SEARCH, MEANINGS, GREEK, GREEK_MEANINGS, HEBREW, HEBREW_MEANINGS],
numOfSearchTypesToDisplay: 7, // Not counting GREEK_MEANINGS and HEBREW_MEANINGS from the above line
displayOptions: ["Strong_number", "Transliteration", "Original_language", "Frequency", "Frequency_details", "Dynamic_update"],
displayOptions: ["Strong_number", "Transliteration", "Original_language", "Frequency", "Frequency_details", "Immediate_update"],
searchModalCurrentPage: 1,
searchUserInput: "",
searchRange: "Gen-Rev",
Expand Down Expand Up @@ -533,16 +533,15 @@ step.searchSelect = {
}
else {
if ($("#select_advanced_search").hasClass("checked")) {
if ($("#srchOptnsCheckdynamic_update").css("visibility") === "visible") {
if ($("#srchOptnsCheckimmediate_update").css("visibility") === "visible") {
step.searchSelect._handleEnteredSearchWord();
$("#searchButton").hide();
}
else
step.searchSelect.checkSearchButton(userInput);
}
else {
else
step.searchSelect._handleEnteredSearchWord();
}
}
}
},
Expand Down

0 comments on commit 8662a37

Please sign in to comment.