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.
123456789101112131415161718192021222324 |
- var Unibase;
- (function (Unibase) {
- let Platform;
- (function (Platform) {
- let Integrations;
- (function (Integrations) {
- let Components;
- (function (Components) {
- class Integration_Template {
- loadTemplate() {
- let html = `<option value="{{Id}}">{{Name}}</option>`;
- return html;
- }
- static Instance() {
- if (this._instance === undefined)
- this._instance = new Integration_Template();
- return this._instance;
- }
- }
- Components.Integration_Template = Integration_Template;
- })(Components = Integrations.Components || (Integrations.Components = {}));
- })(Integrations = Platform.Integrations || (Platform.Integrations = {}));
- })(Platform = Unibase.Platform || (Unibase.Platform = {}));
- })(Unibase || (Unibase = {}));
|