From d408cd7f376c6b6841fd849758c1dbb6d9f12806 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 eed253d6602..63baa83f527 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -117,6 +117,7 @@ $(document).ready(function() { }); $('.delete').click('click',function(event) { + event.preventDefault(); console.log("delete selected"); var spinner = ''; var files=getSelectedFiles('file'); -- 2.39.5