add automaticLinkedUrlSchemes

This commit is contained in:
Christian Hillebrand 2021-03-04 16:38:47 +01:00 committed by GitHub
parent ab24b3262c
commit c1f52a5e5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -176,6 +176,9 @@ BlazeComponent.extendComponent({
const textBelowCustomLoginLogo = $('#text-below-custom-login-logo') const textBelowCustomLoginLogo = $('#text-below-custom-login-logo')
.val() .val()
.trim(); .trim();
const automaticLinkedUrlSchemes = $('#automatic-linked-url-schemes')
.val()
.trim();
const customTopLeftCornerLogoImageUrl = $( const customTopLeftCornerLogoImageUrl = $(
'#custom-top-left-corner-logo-image-url', '#custom-top-left-corner-logo-image-url',
) )
@ -209,6 +212,7 @@ BlazeComponent.extendComponent({
customTopLeftCornerLogoHeight, customTopLeftCornerLogoHeight,
displayAuthenticationMethod, displayAuthenticationMethod,
defaultAuthenticationMethod, defaultAuthenticationMethod,
automaticLinkedUrlSchemes,
}, },
}); });
} catch (e) { } catch (e) {