1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-17 07:41:26 +00:00

Fixed sending file shared link bug

This commit is contained in:
xiez
2012-09-15 21:16:34 +08:00
parent 2317ef5c60
commit fa447e729f
4 changed files with 54 additions and 59 deletions

View File

@@ -267,7 +267,7 @@ function apply_form_error(formid, error_msg) {
var form_err = $("#" + formid + " .error"),
container = $("#simplemodal-container");
form_err.html(error_msg).attr('class', 'error');
form_err.html(error_msg).attr('class', 'error').removeClass('hide');
container.css('height', $('#'+formid).height());
}