Fix Collabora JS not being loaded for filemanager

This commit is contained in:
nathan 2022-02-03 10:01:10 -07:00
parent 2e5c433ab9
commit 026eaaaa71
2 changed files with 4 additions and 2 deletions

View File

@ -13,4 +13,7 @@ import {filemanagerAPP} from "./filemanager";
/**
* This is the app.ts endpoint, code is in ./filemanager.ts to ensure proper loading/cache-invalidation for Collabora extending filemanagerAPP!
*/
app.classes.filemanager = filemanagerAPP;
if(typeof app.classes.filemanager === "undefined")
{
app.classes.filemanager = filemanagerAPP;
}

View File

@ -1444,4 +1444,3 @@ export class filemanagerAPP extends EgwApp
}
}
}
app.classes.filemanager = filemanagerAPP;