FileManager move function + small bugfixes

This commit is contained in:
Serghey Rodin 2016-08-09 19:22:45 +03:00
parent 7b924c0227
commit 4adbef4517
38 changed files with 563 additions and 566 deletions

View file

@ -797,9 +797,9 @@ App.Ajax.request = function(method, data, callback, onError){
}*/
//App.Helpers.setAjaxBusy(method, data);
data = data || {};
var prgs = $('.progress-container');
switch (method) {
case 'cd':
prgs.find('title').text('Opening dir');
@ -825,8 +825,12 @@ App.Ajax.request = function(method, data, callback, onError){
prgs.find('title').text('Renaming file');
prgs.show();
break;
case 'copy_file':
case 'copy_directory':
prgs.find('title').text('Copying files');
prgs.show();
break;
default:
break;
}