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
|
//Delete accounts
|
||||||
//Show is javascript is enable
|
//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(){
|
$('input:checkbox[name=delete-all]').click(function(){
|
||||||
if ( this.checked ) {
|
if ( this.checked ) {
|
||||||
|
|
|
@ -82,7 +82,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">
|
<th scope="col">
|
||||||
<input class="delete-all" type="checkbox" name="delete-all">
|
<input class="delete-all hidden" type="checkbox" name="delete-all">
|
||||||
Email Address
|
Email Address
|
||||||
<nav class="account-alpha-browse">
|
<nav class="account-alpha-browse">
|
||||||
<a class="sort-asc" href="?accountsPerPage=${accountsPerPage}&orderField=email&orderDirection=ASC" title="ascending order"></a>
|
<a class="sort-asc" href="?accountsPerPage=${accountsPerPage}&orderField=email&orderDirection=ASC" title="ascending order"></a>
|
||||||
|
|
Loading…
Add table
Reference in a new issue