From a6e5f4b85c0aea807f95347e68f88faf08dfbee1 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Wed, 30 Jan 2013 13:01:53 +0100 Subject: some minor improvements --- apps/files_trashbin/js/trash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/files_trashbin/js') diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 553e4cbc6f0..31d16436b2c 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -30,7 +30,7 @@ $(document).ready(function() { $('td.filename input:checkbox').attr('checked', false); $('td.filename input:checkbox').parent().parent().removeClass('selected'); } - procesSelection(); + processSelection(); }); $('td.filename input:checkbox').live('change',function(event) { @@ -59,7 +59,7 @@ $(document).ready(function() { $('#select_all').attr('checked',true); } } - procesSelection(); + processSelection(); }); $('.undelete').click('click',function(event) { @@ -81,7 +81,7 @@ $(document).ready(function() { }); -function procesSelection(){ +function processSelection(){ var selected=getSelectedFiles(); var selectedFiles=selected.filter(function(el){return el.type=='file'}); var selectedFolders=selected.filter(function(el){return el.type=='dir'}); -- cgit v1.2.3