mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
10 lines
298 B
JavaScript
10 lines
298 B
JavaScript
var dsvFileListPlugin = {
|
|
attach: function (fileList) {
|
|
if (fileList.id === 'trashbin' || fileList.id === 'files.public') {
|
|
return;
|
|
}
|
|
|
|
fileList.registerTabView(new OCA.Dsv.DsvTabView());
|
|
}
|
|
};
|
|
OC.Plugins.register('OCA.Files.FileList', dsvFileListPlugin);
|