Merge branch 'fix-164' into 'development'
🐛 — Fix #164 — Fix typo that leads to error in Safari See merge request fiat-tux/hat-softwares/lufi!39
This commit is contained in:
commit
d08275d7e5
|
@ -3,8 +3,9 @@ Revision history for Lufi
|
||||||
?.??.? ????-??-??
|
?.??.? ????-??-??
|
||||||
- Fix invitations sorting order (#163)
|
- Fix invitations sorting order (#163)
|
||||||
- Same behavior on files and invitations tables (striped, invert selection
|
- Same behavior on files and invitations tables (striped, invert selection
|
||||||
button) (#166)
|
button) (#166)
|
||||||
- Change row color on hover
|
- Change row color on hover
|
||||||
|
- Fix typo that leads to error in Safari (#164)
|
||||||
|
|
||||||
0.04.3 2019-09 29
|
0.04.3 2019-09 29
|
||||||
- Translate dates in invitations (#161)
|
- Translate dates in invitations (#161)
|
||||||
|
|
|
@ -240,7 +240,7 @@ function populateFilesTable() {
|
||||||
'</td>'].join(''));
|
'</td>'].join(''));
|
||||||
$('#myfiles').append(tr);
|
$('#myfiles').append(tr);
|
||||||
$('#del-'+element.short).on('click', delFile);
|
$('#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') {
|
if ($('#check-'+element.short).attr('data-checked') && $('#check-'+element.short).attr('data-checked') === 'data-checked') {
|
||||||
$('#check-'+element.short).attr('data-checked', null);
|
$('#check-'+element.short).attr('data-checked', null);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue