🐛 — Fix #164 — Fix typo that leads to error in Safari
This commit is contained in:
parent
784ed3867b
commit
7c3bd95361
|
@ -3,8 +3,9 @@ Revision history for Lufi
|
|||
?.??.? ????-??-??
|
||||
- Fix invitations sorting order (#163)
|
||||
- Same behavior on files and invitations tables (striped, invert selection
|
||||
button) (#166)
|
||||
button) (#166)
|
||||
- Change row color on hover
|
||||
- Fix typo that leads to error in Safari (#164)
|
||||
|
||||
0.04.3 2019-09 29
|
||||
- Translate dates in invitations (#161)
|
||||
|
|
|
@ -240,7 +240,7 @@ function populateFilesTable() {
|
|||
'</td>'].join(''));
|
||||
$('#myfiles').append(tr);
|
||||
$('#del-'+element.short).on('click', delFile);
|
||||
$('label[for="check-'+element.short+'"').on('click', function(){
|
||||
$('label[for="check-'+element.short+'"]').on('click', function(){
|
||||
if ($('#check-'+element.short).attr('data-checked') && $('#check-'+element.short).attr('data-checked') === 'data-checked') {
|
||||
$('#check-'+element.short).attr('data-checked', null);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue