forked from extern/egroupware
9ff7e3a22f
this should fix the problem that filemanager does not load because collabora/js/app imports filemanager/js/app which has no cache-buster and therefore fails to include old / no longer existing chunks EGroupware takes care of cache-busters for all app/js/app.js while rollup uses it's chunks to do so for all other imports
17 lines
585 B
TypeScript
17 lines
585 B
TypeScript
/**
|
|
* EGroupware - Filemanager - Javascript UI
|
|
*
|
|
* @link https://www.egroupware.org
|
|
* @package filemanager
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @copyright (c) 2008-21 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
*/
|
|
|
|
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;
|