summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-11-05 18:42:44 +0100
committerGeorg Ehrke <dev@georgswebsite.de>2012-11-05 18:42:44 +0100
commitbb0164c9fc968497f0e294c29f7efde50e2c9945 (patch)
treec99fec76651c9239ea489ab902ff3dd6ce306c29 /apps
parent972243d5640c40b1f161e50f31404c71d7c290c0 (diff)
downloadnextcloud-server-bb0164c9fc968497f0e294c29f7efde50e2c9945.tar.gz
nextcloud-server-bb0164c9fc968497f0e294c29f7efde50e2c9945.zip
fix file delete in opera - fixes #188
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/filelist.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index f08e412921e..ae92a3f1ee1 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -375,4 +375,7 @@ $(document).ready(function(){
FileList.lastAction();
}
});
+ $(window).unload(function (){
+ $(window).trigger('beforeunload');
+ });
});