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.

integration.template.js 1021B

123456789101112131415161718192021222324
  1. var Unibase;
  2. (function (Unibase) {
  3. let Platform;
  4. (function (Platform) {
  5. let Integrations;
  6. (function (Integrations) {
  7. let Components;
  8. (function (Components) {
  9. class Integration_Template {
  10. loadTemplate() {
  11. let html = `<option value="{{Id}}">{{Name}}</option>`;
  12. return html;
  13. }
  14. static Instance() {
  15. if (this._instance === undefined)
  16. this._instance = new Integration_Template();
  17. return this._instance;
  18. }
  19. }
  20. Components.Integration_Template = Integration_Template;
  21. })(Components = Integrations.Components || (Integrations.Components = {}));
  22. })(Integrations = Platform.Integrations || (Platform.Integrations = {}));
  23. })(Platform = Unibase.Platform || (Unibase.Platform = {}));
  24. })(Unibase || (Unibase = {}));