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.

supportmap.settings.js 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. var Bizgaze;
  2. (function (Bizgaze) {
  3. let Apps;
  4. (function (Apps) {
  5. let Support;
  6. (function (Support) {
  7. let Controls;
  8. (function (Controls) {
  9. class SupportMap_Setting {
  10. loadSettingHtml() {
  11. return ``;
  12. }
  13. bindControlData(controldatajson) {
  14. return "";
  15. }
  16. SaveControlData(controldatajson) {
  17. return "";
  18. }
  19. loadControlPropertiesHtml(Container) {
  20. return "";
  21. }
  22. bindPropertySettings(prop) {
  23. return "";
  24. }
  25. savePropertySettings(prop) {
  26. return "";
  27. }
  28. static Instance() {
  29. if (this.instance === undefined) {
  30. this.instance = new SupportMap_Setting();
  31. }
  32. return this.instance;
  33. }
  34. }
  35. Controls.SupportMap_Setting = SupportMap_Setting;
  36. })(Controls = Support.Controls || (Support.Controls = {}));
  37. })(Support = Apps.Support || (Apps.Support = {}));
  38. })(Apps = Bizgaze.Apps || (Bizgaze.Apps = {}));
  39. })(Bizgaze || (Bizgaze = {}));