NIHVIVO-2280: Removed checkbox form element for multiple accounts deletion when javascript is disable.
This commit is contained in:
parent
c2d1a05c2a
commit
20f39dc25c
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ $(document).ready(function(){
|
|||
|
||||
//Delete accounts
|
||||
//Show is javascript is enable
|
||||
$('input:checkbox[name=delete-all]').show();
|
||||
$('input:checkbox[name=delete-all]').removeClass('hidden');
|
||||
|
||||
$('input:checkbox[name=delete-all]').click(function(){
|
||||
if ( this.checked ) {
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th scope="col">
|
||||
<input class="delete-all" type="checkbox" name="delete-all">
|
||||
<input class="delete-all hidden" type="checkbox" name="delete-all">
|
||||
Email Address
|
||||
<nav class="account-alpha-browse">
|
||||
<a class="sort-asc" href="?accountsPerPage=${accountsPerPage}&orderField=email&orderDirection=ASC" title="ascending order"></a>
|
||||
|
|
Loading…
Add table
Reference in a new issue