diff --git a/common/static/js/utils/edx.utils.validate.js b/common/static/js/utils/edx.utils.validate.js index de3281de6a..5a2afa7b02 100644 --- a/common/static/js/utils/edx.utils.validate.js +++ b/common/static/js/utils/edx.utils.validate.js @@ -168,7 +168,9 @@ var edx = edx || {}; // Removes the default HTML5 validation pop-up removeDefault: function( $el ) { - $el.setCustomValidity(' '); + if ( $el.setCustomValidity ) { + $el.setCustomValidity(' '); + } } } }; diff --git a/lms/static/sass/views/_login-register.scss b/lms/static/sass/views/_login-register.scss index ae74f77ff4..ceb828a9e9 100644 --- a/lms/static/sass/views/_login-register.scss +++ b/lms/static/sass/views/_login-register.scss @@ -90,7 +90,7 @@ @include span-columns(4); padding: 25px 10px; - &:first-of-type { + &:nth-of-type(2) { border-bottom: 1px solid $gray-l4; } }