In the Netscaler integration for VIP, We observed that we have to hit enter keyword twice to submit the form which is not expected behavior and need to be fixed.
Release : 1.0
We have fixed this issue in tmindex.html file and below is the piece of code which is added to correct the behavior. Attaching the modified tmindex.html file as well for reference.
$(document).on('keyup','#passwd1',
function (e) {
var currentInput = $("input").val();
console.log(currentInput);
if (e.keyCode === 13)
{ e.preventDefault(); $.localization = localization; isSubmitted = true; return vipAuth(); }
}
);