okay, added some added color enhancements, time to write up some A3 shiz

This commit is contained in:
Ken Johnson
2013-05-22 12:44:24 -04:00
parent e03fd8548c
commit 9a53087361
2 changed files with 14 additions and 9 deletions
+1 -1
View File
@@ -23,12 +23,12 @@ function validation(){
highlight: function(label) {
$("#submit_button").attr('disabled','disabled');
$(label).closest('.control-group').addClass('error');
$('.error').css({"color": "red"});
},
success: function(label) {
label.closest('.control-group').addClass('success');
$("#submit_button").removeAttr('disabled');
}
});
};