summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/js/filelist.js
blob: ff3a846d860852c9f8df914efa450eaff99c690c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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);
		}
	});
}

FileList.setCurrentDir = function(targetDir, changeUrl){
	$('#dir').val(targetDir);
	// Note: IE8 handling ignored for now
	if (window.history.pushState && changeUrl !== false){
		url = OC.linkTo('files_trashbin', 'index.php')+"?dir="+ encodeURIComponent(targetDir).replace(/%2F/g, '/'),
		window.history.pushState({dir: targetDir}, '', url);
	}
}