2013-08-17 15:07:18 +04:00
|
|
|
// override reload with own ajax call
|
|
|
|
FileList.reload = function(){
|
|
|
|
FileList.showMask();
|
|
|
|
if (FileList._reloadCall){
|
|
|
|
FileList._reloadCall.abort();
|
|
|
|
}
|
|
|
|
$.ajax({
|
|
|
|
url: OC.filePath('files_trashbin','ajax','list.php'),
|
|
|
|
data: {
|
|
|
|
dir : $('#dir').val(),
|
|
|
|
breadcrumb: true
|
|
|
|
},
|
|
|
|
error: function(result) {
|
|
|
|
FileList.reloadCallback(result);
|
|
|
|
},
|
|
|
|
success: function(result) {
|
|
|
|
FileList.reloadCallback(result);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-08-29 23:56:14 +04:00
|
|
|
FileList.linkTo = function(dir){
|
|
|
|
return OC.linkTo('files_trashbin', 'index.php')+"?dir="+ encodeURIComponent(dir).replace(/%2F/g, '/');
|
2013-08-17 15:07:18 +04:00
|
|
|
}
|
2013-10-31 01:34:37 +04:00
|
|
|
|
|
|
|
FileList.updateEmptyContent = function(){
|
|
|
|
var $fileList = $('#fileList');
|
|
|
|
var exists = $fileList.find('tr:first').exists();
|
|
|
|
$('#emptycontent').toggleClass('hidden', exists);
|
|
|
|
$('#filestable th').toggleClass('hidden', !exists);
|
|
|
|
}
|