mirror of
https://github.com/myvesta/vesta
synced 2025-07-10 15:23:15 -07:00
FileManager move function + small bugfixes
This commit is contained in:
parent
7b924c0227
commit
4adbef4517
38 changed files with 563 additions and 566 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue