Skip to content

Commit be792c1

Browse files
committed
feat(ui): display each letter of thai words
#2194
1 parent 76f5e59 commit be792c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/webapp/WEB-INF/jsp/content/word/create.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</div>
1616

1717
<c:if test="${not empty word.text}">
18-
<c:if test="${applicationScope.configProperties['content.language'] == 'HIN'}">
18+
<c:if test="${(applicationScope.configProperties['content.language'] == 'HIN') || (applicationScope.configProperties['content.language'] == 'THA')}">
1919
<%-- Extract and display each letter of the word. E.g. "न ह ी ं" for "नहीं" --%>
2020
<div class="col s12 grey-text" style="font-size: 4em;">
2121
<c:forEach begin="0" end="${fn:length(word.text) - 1}" varStatus="status">

src/main/webapp/WEB-INF/jsp/content/word/edit.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</div>
2525

2626
<c:if test="${not empty word.text}">
27-
<c:if test="${applicationScope.configProperties['content.language'] == 'HIN'}">
27+
<c:if test="${(applicationScope.configProperties['content.language'] == 'HIN') || (applicationScope.configProperties['content.language'] == 'THA')}">
2828
<%-- Extract and display each letter of the word. E.g. "न ह ी ं" for "नहीं" --%>
2929
<div class="col s12 grey-text" style="font-size: 4em;">
3030
<c:forEach begin="0" end="${fn:length(word.text) - 1}" varStatus="status">

0 commit comments

Comments
 (0)