Minor error in validation feedback on genericproperties

[TFS Changeset #65687]
This commit is contained in:
hartvig
2010-04-22 10:05:58 +00:00
parent 3513ddb297
commit bb3cb5616f

View File

@@ -28,7 +28,7 @@ function checkAlias(theId) {
jQuery('#' + theId).blur(function(event) {
var currentAlias = jQuery('#' + theId).val();
jQuery('#' + theId).val(safeAlias(currentAlias));
jQuery('#' + theId).toggleClass('aliasValidationError');
jQuery('#' + theId).removeClass('aliasValidationError');
})
}