ENT-800 Fix IE11 Broken Submit button on Registration Page

This commit is contained in:
Brittney Exline
2017-12-12 11:58:00 -05:00
parent a9506c1a05
commit c110a9ac21

View File

@@ -179,7 +179,7 @@
// Show each input tip
$(this).children().each(function() {
if (inputTipSelectorsHidden.includes($(this).attr('class'))) {
if (inputTipSelectorsHidden.indexOf($(this).attr('class')) >= 0) {
$(this).removeClass('hidden');
}
});
@@ -193,7 +193,7 @@
// Hide each input tip
$(this).children().each(function() {
if (inputTipSelectors.includes($(this).attr('class'))) {
if (inputTipSelectors.indexOf($(this).attr('class')) >= 0) {
$(this).addClass('hidden');
}
});
@@ -207,7 +207,7 @@
// Initially hide each input tip
input.children().each(function() {
if (inputTipSelectors.includes($(this).attr('class'))) {
if (inputTipSelectors.indexOf($(this).attr('class')) >= 0) {
$(this).addClass('hidden');
}
});