user management: remove unneeded and erroneous user filter reset function
This commit is contained in:
parent
1ae8ec698b
commit
66d00cf782
3 changed files with 0 additions and 6 deletions
|
@ -109,10 +109,6 @@ div.quota>span {
|
||||||
select.quota.active { background: #fff; }
|
select.quota.active { background: #fff; }
|
||||||
|
|
||||||
input.userFilter {width: 200px;}
|
input.userFilter {width: 200px;}
|
||||||
span.userFilterReset {
|
|
||||||
width: 16px; height: 16px; position: absolute;
|
|
||||||
padding-top: 20px; margin-left: -20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* positioning fixes */
|
/* positioning fixes */
|
||||||
#newuser .multiselect {
|
#newuser .multiselect {
|
||||||
|
|
|
@ -425,7 +425,6 @@ $(document).ready(function () {
|
||||||
// Implements User Search
|
// Implements User Search
|
||||||
filter = new UserManagementFilter(
|
filter = new UserManagementFilter(
|
||||||
$('#usersearchform input'), UserList, GroupList);
|
$('#usersearchform input'), UserList, GroupList);
|
||||||
filter.addResetButton($('.userFilterReset').first());
|
|
||||||
|
|
||||||
UserList.doSort();
|
UserList.doSort();
|
||||||
UserList.availableGroups = $('#content table').data('groups');
|
UserList.availableGroups = $('#content table').data('groups');
|
||||||
|
|
|
@ -28,6 +28,5 @@
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<form autocomplete="off" id="usersearchform">
|
<form autocomplete="off" id="usersearchform">
|
||||||
<input type="text" class="input userFilter" placeholder="<?php p($l->t('Search Users and Groups')); ?>" />
|
<input type="text" class="input userFilter" placeholder="<?php p($l->t('Search Users and Groups')); ?>" />
|
||||||
<span class="svg icon-delete userFilterReset"></a>
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
Loading…
Reference in a new issue