Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
Signed-off-by: szaimen <szaimen@e.mail.de>
  • Loading branch information
szaimen committed Apr 12, 2022
1 parent 0a26953 commit ad80138
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/files_sharing/js/public.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ OCA.Sharing.PublicApp = {

setInterval(function () {
if (document.hasFocus()) {
document.body.classList.removeClass('blur');
document.body.classList.remove('blur');
} else {
document.body.classList.addClass('blur');
document.body.classList.add('blur');
}
}, 300);
}
Expand Down

0 comments on commit ad80138

Please sign in to comment.