Commit 0a693c5
Changed files (1)
js/trax_input.js
@@ -9,8 +9,9 @@ $(document).ready( function() {
type: form.method,
data: $(form).serialize(),
success: function (response) {
- $('#submitAlert').show();
$('#submitAlert').append(response);
+ $('#submitAlert').addClass('alert-success');
+ $('#submitAlert').show();
}
});
},