From c872042616b5f90770c73722766607d38b092b6f Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Mon, 27 May 2013 15:24:37 +0200 Subject: [PATCH] fix https://github.com/owncloud/core/issues/3320 --- apps/files_trashbin/js/trash.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 668313c358f..21a6da388cf 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -118,6 +118,7 @@ $(document).ready(function() { }); $('.delete').click('click',function(event) { + event.preventDefault(); console.log("delete selected"); var spinner = ''; var files=getSelectedFiles('file'); -- 2.39.5