diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-04-01 16:09:48 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-04-01 16:09:48 +0200 |
commit | aaa8d6ec026f3ab243b177956ee9eab461a2515e (patch) | |
tree | d4089621d932654a0cda6a6ce026763e1c20b285 /apps/files/js/fileactions.js | |
parent | 27eff1ac30948fb3810efa0577ee729712a9652d (diff) | |
download | nextcloud-server-aaa8d6ec026f3ab243b177956ee9eab461a2515e.tar.gz nextcloud-server-aaa8d6ec026f3ab243b177956ee9eab461a2515e.zip |
Fixed broken delete file action
Diffstat (limited to 'apps/files/js/fileactions.js')
-rw-r--r-- | apps/files/js/fileactions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index a7d1fa9d8a2..732690f047a 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -180,7 +180,7 @@ var FileActions = { } var element = $(html); element.data('action', actions['Delete']); - element.on('click', {a: null, elem: parent, actionFunc: actions['Delete']}, actionHandler); + element.on('click', {a: null, elem: parent, actionFunc: actions['Delete'].action}, actionHandler); parent.parent().children().last().append(element); } |