🐛Fix #164 — Fix typo that leads to error in Safari

This commit is contained in:
Luc Didry 2019-10-08 00:11:49 +02:00
parent 784ed3867b
commit 7c3bd95361
No known key found for this signature in database
GPG Key ID: EA868E12D0257E3C
2 changed files with 3 additions and 2 deletions

View File

@ -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)

View File

@ -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 {