diff --git a/README.md b/README.md index dcf87364..58fc2710 100644 --- a/README.md +++ b/README.md @@ -80,5 +80,5 @@ bug reports. ### Translate Easy!Appointments As of version 1.0 Easy!Appointments supports translated user interface. If you want to contribute to the -translation process read the [get involved](https://github.com/alextselegidis/easyappointments/wiki/Get-Involved!) +translation process read the [get involved](https://github.com/alextselegidis/easyappointments/blob/master/doc/get-involved.md) page for additional information. diff --git a/src/assets/js/installation.js b/src/assets/js/installation.js index c200b483..d0770426 100644 --- a/src/assets/js/installation.js +++ b/src/assets/js/installation.js @@ -71,7 +71,9 @@ $(function () { */ function validate() { try { - $alert.hide(); + $alert + .removeClass('alert-danger') + .hide(); $('input').closest('.form-group').removeClass('has-error'); // Check for empty fields. @@ -114,6 +116,7 @@ $(function () { return true; } catch (error) { $alert + .addClass('alert-danger') .text(error) .show();