Skip to content

Commit 4ea4250

Browse files
update to internal commit afab0b33
1 parent ecae93a commit 4ea4250

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

_layouts/default-layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
$('#txtSearch').keydown(function(e) {
181181
if (e.keyCode == 13) {
182182
let product = getUrlVars(document.URL)["product"] ? getUrlVars(document.URL)["product"] : getCurrentUrlProductName(document.URL)
183-
if (["dbr", "dlr", "dce", "dcp", "dcv", "ddn", "mrz"].indexOf(product) >= 0) {
183+
if (["dbr", "dlr", "dce", "dcp", "dcv", "ddn", "mrz", "mds"].indexOf(product) >= 0) {
184184
let lang = getCurrentUrlLang(document.URL, true)
185185
let reporType = ""
186186
if (lang && lang != "core") {

assets/js/index-banner-v3.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -891,6 +891,8 @@ function getDoumentName(product) {
891891
return 'license-server';
892892
case 'mrz':
893893
return 'mrz-scanner';
894+
case 'mds':
895+
return 'mobile-document-scanner';
894896
default:
895897
return '';
896898
}
@@ -925,6 +927,8 @@ function getCurrentUrlProductName(url = null) {
925927
return 'lts';
926928
case 'mrz-scanner':
927929
return 'mrz';
930+
case 'mobile-document-scanner':
931+
return 'mds';
928932
default:
929933
return '';
930934
}

0 commit comments

Comments
 (0)