Built files from Bizgaze WebServer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

widgethiddenfields.js 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. var Unibase;
  2. (function (Unibase) {
  3. let Platform;
  4. (function (Platform) {
  5. let Widgets;
  6. (function (Widgets) {
  7. class WidgetHiddenFields {
  8. constructor() {
  9. this.PortletWidgets = [];
  10. this.Portlets = [];
  11. this.NewWidgets = [];
  12. this.NewWidgetsForPortlet = [];
  13. this.SelectedWidgets = [];
  14. this.deleteWidget = [];
  15. this.editWidget = [];
  16. this.EditPortletAndWidgetsIds = [];
  17. this.uniq_new_portletwid = 0;
  18. this.wid = 0;
  19. this.pwid = 0;
  20. this.unix_pwid = 0;
  21. this.StructureDesigns = [];
  22. this.StructureDesignDelete = [];
  23. }
  24. static Instance() {
  25. if (this._instance === undefined)
  26. this._instance = new WidgetHiddenFields();
  27. return this._instance;
  28. }
  29. }
  30. Widgets.WidgetHiddenFields = WidgetHiddenFields;
  31. })(Widgets = Platform.Widgets || (Platform.Widgets = {}));
  32. })(Platform = Unibase.Platform || (Unibase.Platform = {}));
  33. })(Unibase || (Unibase = {}));