diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-02-07 09:23:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 09:23:44 +0100 |
commit | fceb7ae47c4c7a515bdeafc6d4c2fdf896a23654 (patch) | |
tree | 00a365f535190d47f61a328663d6166597ec0118 /apps | |
parent | 264f1411054534264fcf0f4799d178ba98758b3d (diff) | |
parent | 034fefa7b70745383b1b5fcbeec05fd9f376b202 (diff) | |
download | nextcloud-server-fceb7ae47c4c7a515bdeafc6d4c2fdf896a23654.tar.gz nextcloud-server-fceb7ae47c4c7a515bdeafc6d4c2fdf896a23654.zip |
Merge pull request #19331 from nextcloud/bugfix/18890/remove-nested-call-to-beforeunload
Removed nested call to beforeunload
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/filelist.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 17073b47033..01624975c1a 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -3797,8 +3797,5 @@ $(document).ready(function() { OCA.Files.FileList.lastAction(); } }); - $(window).on('unload', function () { - $(window).trigger('beforeunload'); - }); }); |