Skip to content

Commit

Permalink
ZBUG-3008: Added condition check to hide version block in tablet
Browse files Browse the repository at this point in the history
  • Loading branch information
lavegupta committed Sep 9, 2022
1 parent 9f012b2 commit bea4d6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion WebRoot/public/login.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
|| (ua.isOsBlackBerry)
|| (ua.isOsAndroid)
|| (ua.isIos))}"/>
<c:set var="tabletSupported" value="${ua.isTouchiPad || ua.isTablet}"/>
<c:set var="totpAuthRequired" value="false"/>
<c:set var="trimmedUserName" value="${fn:trim(param.username)}"/>
<%--'virtualacctdomain' param is set only for external virtual accounts--%>
Expand Down Expand Up @@ -696,7 +697,7 @@ if (application.getInitParameter("offlineMode") != null) {
<hr/>
</div>
<div>
<c:if test="${!(mobileSupported && modernSupported)}">
<c:if test="${!((mobileSupported || tabletSupported) && modernSupported)}">
<div class="versionBlock">
<label for="client"><fmt:message key="versionHeaderLabel"/></label>
<div style="position: relative;">
Expand Down

0 comments on commit bea4d6b

Please sign in to comment.