2020-02-28 14:42:45 +01:00
|
|
|
/**
|
|
|
|
* EGroupware - Filemanager - Javascript UI
|
|
|
|
*
|
2021-06-10 11:38:54 +02:00
|
|
|
* @link https://www.egroupware.org
|
2020-02-28 14:42:45 +01:00
|
|
|
* @package filemanager
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
2021-06-10 11:38:54 +02:00
|
|
|
* @copyright (c) 2008-21 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
2020-02-28 14:42:45 +01:00
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
*/
|
|
|
|
|
2021-12-11 08:47:16 +01:00
|
|
|
import {filemanagerAPP} from "./filemanager";
|
2020-02-28 14:42:45 +01:00
|
|
|
|
|
|
|
/**
|
2021-12-11 08:47:16 +01:00
|
|
|
* This is the app.ts endpoint, code is in ./filemanager.ts to ensure proper loading/cache-invalidation for Collabora extending filemanagerAPP!
|
2020-02-28 14:42:45 +01:00
|
|
|
*/
|
2022-02-03 18:01:10 +01:00
|
|
|
if(typeof app.classes.filemanager === "undefined")
|
|
|
|
{
|
|
|
|
app.classes.filemanager = filemanagerAPP;
|
|
|
|
}
|