Get vfs and expose working

This commit is contained in:
Hadi Nategh 2021-06-10 15:52:00 +02:00
parent 54fff9739a
commit 9ea598070e
5 changed files with 9 additions and 1 deletions

View File

@ -30,6 +30,9 @@ import { et2_inputWidget } from "./et2_core_inputWidget";
import { et2_no_init } from "./et2_core_common"; import { et2_no_init } from "./et2_core_common";
import { egw, egw_get_file_editor_prefered_mimes } from "../jsapi/egw_global"; import { egw, egw_get_file_editor_prefered_mimes } from "../jsapi/egw_global";
import { expose } from "./expose"; import { expose } from "./expose";
import { egw_getAppObjectManager } from "../egw_action/egw_action.js";
import { EGW_KEY_ENTER, egw_keyHandler } from '../egw_action/egw_keymanager.js';
import { etemplate2 } from "./etemplate2";
/** /**
* Class which implements the "vfs" XET-Tag * Class which implements the "vfs" XET-Tag
* *

View File

@ -32,6 +32,9 @@ import {et2_IDetachedDOM, et2_IExposable} from "./et2_core_interfaces";
import {et2_no_init} from "./et2_core_common"; import {et2_no_init} from "./et2_core_common";
import {egw, egw_get_file_editor_prefered_mimes} from "../jsapi/egw_global"; import {egw, egw_get_file_editor_prefered_mimes} from "../jsapi/egw_global";
import {expose} from "./expose"; import {expose} from "./expose";
import {egw_getAppObjectManager, egwActionObject} from "../egw_action/egw_action.js";
import {EGW_KEY_ENTER, egw_keyHandler} from '../egw_action/egw_keymanager.js';
import {etemplate2} from "./etemplate2";
/** /**
* Class which implements the "vfs" XET-Tag * Class which implements the "vfs" XET-Tag

View File

@ -15,6 +15,7 @@
import { et2_createWidget } from "./et2_core_widget"; import { et2_createWidget } from "./et2_core_widget";
import { et2_dialog } from "./et2_widget_dialog"; import { et2_dialog } from "./et2_widget_dialog";
import { egw, egw_get_file_editor_prefered_mimes } from "../jsapi/egw_global"; import { egw, egw_get_file_editor_prefered_mimes } from "../jsapi/egw_global";
import { et2_nextmatch } from "./et2_extension_nextmatch";
import { ET2_DATAVIEW_STEPSIZE } from "./et2_dataview_controller"; import { ET2_DATAVIEW_STEPSIZE } from "./et2_dataview_controller";
/** /**
* This function extends the given widget with blueimp gallery plugin * This function extends the given widget with blueimp gallery plugin

View File

@ -19,7 +19,7 @@
import {et2_createWidget} from "./et2_core_widget"; import {et2_createWidget} from "./et2_core_widget";
import {et2_dialog} from "./et2_widget_dialog"; import {et2_dialog} from "./et2_widget_dialog";
import {egw, egw_get_file_editor_prefered_mimes} from "../jsapi/egw_global"; import {egw, egw_get_file_editor_prefered_mimes} from "../jsapi/egw_global";
import type {et2_nextmatch} from "./et2_extension_nextmatch"; import {et2_nextmatch} from "./et2_extension_nextmatch";
import {ET2_DATAVIEW_STEPSIZE} from "./et2_dataview_controller"; import {ET2_DATAVIEW_STEPSIZE} from "./et2_dataview_controller";
type Constructor<T = {}> = new (...args: any[]) => T; type Constructor<T = {}> = new (...args: any[]) => T;

View File

@ -18,5 +18,6 @@
/vendor/bower-asset/jquery-touchswipe/jquery.touchSwipe.js; /vendor/bower-asset/jquery-touchswipe/jquery.touchSwipe.js;
/vendor/egroupware/magicsuggest/magicsuggest.js; /vendor/egroupware/magicsuggest/magicsuggest.js;
/api/js/jquery/jquery.splitter.js; /api/js/jquery/jquery.splitter.js;
/api/js/jquery/blueimp/js/blueimp-gallery.min.js;
*/ */
jQuery.noConflict(); jQuery.noConflict();