2018-12-02 15:38:27 +00:00
|
|
|
'use strict'
|
2018-11-29 18:03:55 +00:00
|
|
|
|
2020-06-04 20:27:22 +00:00
|
|
|
/* global require, App */
|
|
|
|
|
|
|
|
/* exported Plugins */
|
2018-12-03 07:51:14 +00:00
|
|
|
const Plugins = {};
|
|
|
|
|
2018-12-02 18:52:50 +00:00
|
|
|
require(["dojo/_base/kernel",
|
|
|
|
"dojo/_base/declare",
|
|
|
|
"dojo/ready",
|
|
|
|
"dojo/parser",
|
2020-06-04 19:19:23 +00:00
|
|
|
"fox/App",
|
2018-12-02 18:52:50 +00:00
|
|
|
"dojo/_base/loader",
|
|
|
|
"dojo/_base/html",
|
|
|
|
"dijit/ColorPalette",
|
|
|
|
"dijit/Dialog",
|
|
|
|
"dijit/form/Button",
|
|
|
|
"dijit/form/CheckBox",
|
|
|
|
"dijit/form/DropDownButton",
|
|
|
|
"dijit/form/FilteringSelect",
|
|
|
|
"dijit/form/MultiSelect",
|
|
|
|
"dijit/form/Form",
|
|
|
|
"dijit/form/RadioButton",
|
|
|
|
"dijit/form/ComboButton",
|
|
|
|
"dijit/form/Select",
|
|
|
|
"dijit/form/SimpleTextarea",
|
|
|
|
"dijit/form/TextBox",
|
2019-02-21 09:35:40 +00:00
|
|
|
"dijit/form/NumberSpinner",
|
2018-12-02 18:52:50 +00:00
|
|
|
"dijit/form/ValidationTextBox",
|
|
|
|
"dijit/InlineEditBox",
|
|
|
|
"dijit/layout/AccordionContainer",
|
|
|
|
"dijit/layout/AccordionPane",
|
|
|
|
"dijit/layout/BorderContainer",
|
|
|
|
"dijit/layout/ContentPane",
|
|
|
|
"dijit/layout/TabContainer",
|
|
|
|
"dijit/Menu",
|
|
|
|
"dijit/ProgressBar",
|
|
|
|
"dijit/Toolbar",
|
|
|
|
"dijit/Tree",
|
|
|
|
"dijit/tree/dndSource",
|
|
|
|
"dojo/data/ItemFileWriteStore",
|
|
|
|
"lib/CheckBoxStoreModel",
|
|
|
|
"lib/CheckBoxTree",
|
2021-02-19 10:44:56 +00:00
|
|
|
"fox/PluginHost",
|
2018-12-02 18:52:50 +00:00
|
|
|
"fox/CommonDialogs",
|
|
|
|
"fox/CommonFilters",
|
|
|
|
"fox/PrefUsers",
|
|
|
|
"fox/PrefHelpers",
|
|
|
|
"fox/PrefFeedStore",
|
|
|
|
"fox/PrefFilterStore",
|
|
|
|
"fox/PrefFeedTree",
|
|
|
|
"fox/PrefFilterTree",
|
2019-04-07 10:21:52 +00:00
|
|
|
"fox/PrefLabelTree",
|
2019-04-13 20:36:15 +00:00
|
|
|
"fox/Toolbar",
|
2021-02-12 12:22:10 +00:00
|
|
|
"fox/SingleUseDialog",
|
2020-02-28 10:53:45 +00:00
|
|
|
"fox/form/ValidationTextArea",
|
2019-04-13 20:36:15 +00:00
|
|
|
"fox/form/Select",
|
|
|
|
"fox/form/ComboButton",
|
2020-06-04 19:19:23 +00:00
|
|
|
"fox/form/DropDownButton"], function (dojo, declare, ready, parser) {
|
2018-12-02 18:52:50 +00:00
|
|
|
|
|
|
|
ready(function () {
|
|
|
|
try {
|
2020-06-04 19:19:23 +00:00
|
|
|
App.init(parser, true);
|
2018-12-02 18:52:50 +00:00
|
|
|
} catch (e) {
|
2020-06-04 19:19:23 +00:00
|
|
|
if (typeof App != "undefined" && App.Error)
|
2019-12-14 06:39:44 +00:00
|
|
|
App.Error.report(e);
|
|
|
|
else
|
|
|
|
alert(e + "\n\n" + e.stack);
|
2018-12-01 15:10:30 +00:00
|
|
|
}
|
2018-12-02 18:52:50 +00:00
|
|
|
});
|
2019-02-21 09:35:40 +00:00
|
|
|
});
|