1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-16 15:19:06 +00:00

bugfix for 'repo create' & 'sys user admin'

This commit is contained in:
llj
2015-10-23 18:01:29 +08:00
parent 31b437855f
commit 2bc230ccba
2 changed files with 5 additions and 3 deletions

View File

@@ -10,6 +10,7 @@
<option value="rw" selected="selected">{% trans "Read-Write"%}</option>
<option value="r">{% trans "Read-Only"%}</option>
</select>
<br />
<% } %>
<% if (enable_encrypted_library) { %>
<div class="repo-create-encryption">

View File

@@ -36,6 +36,7 @@ $('.user-status-select, .user-role-select').change(function() {
var select = $(this),
select_val = select.val(),
uid = select.parents('tr').attr('data-userid'),
$select_prev = $(this).prev('.user-status, .user-role'), // .user-status, .user-role
url, data;
if (select.hasClass('user-status-select')) {
@@ -66,15 +67,15 @@ $('.user-status-select, .user-role-select').change(function() {
} else {
feedback("{% trans "Edit succeeded" %}", 'success');
}
select.prev().children('span').html(select.children('option[value="' +select.val() + '"]').text());
$('.user-status-cur-value, .user-role-cur-value', $select_prev).html(select.children('option[value="' +select.val() + '"]').text());
select.addClass('hide');
select.prev().removeClass('hide');
$select_prev.removeClass('hide');
$.modal.close();
},
error: function() {
feedback("{% trans "Edit failed." %}", 'error');
select.addClass('hide');
select.prev().removeClass('hide');
$select_prev.removeClass('hide');
$.modal.close();
}
});