Built files from Bizgaze WebServer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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 = {}));