mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04:00
9 lines
257 B
JavaScript
9 lines
257 B
JavaScript
function displayFormErrors(data){
|
|
if(data.errors != undefined ){
|
|
$.each(data.errors, function(field, errorMsg) {
|
|
$("#"+field).closest(".form-group").addClass("has-error");
|
|
$("#"+field).siblings(".help-block").html(errorMsg);
|
|
});
|
|
}
|
|
}
|