12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- var Unibase;
- (function (Unibase) {
- let Platform;
- (function (Platform) {
- let Communications;
- (function (Communications) {
- let Components;
- (function (Components) {
- let Training;
- (function (Training) {
- class BizgazeTraining extends Unibase.Platform.Core.BaseComponent {
- cssFiles() {
- return [];
- }
- jsFiles() {
- return [];
- }
- html(id, containerid) {
- var html = '';
- return html;
- }
- load(id, containerid, callback) {
- throw new Error("Method not implemented.");
- }
- init(containerid) {
- this.loaddesign(containerid);
- }
- loaddesign(containerid) {
- var html = '<div class="biz-training-wrap"><iframe class="w-100 h-550p" src="https://bizgaze.com/mobil/training.html" title="Bizgaze Training" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></div>';
- $("#" + containerid).append(html);
- }
- static Instance() {
- if (this.instance === null || this.instance === undefined)
- this.instance = new BizgazeTraining();
- return this.instance;
- }
- }
- Training.BizgazeTraining = BizgazeTraining;
- })(Training = Components.Training || (Components.Training = {}));
- })(Components = Communications.Components || (Communications.Components = {}));
- })(Communications = Platform.Communications || (Platform.Communications = {}));
- })(Platform = Unibase.Platform || (Unibase.Platform = {}));
- })(Unibase || (Unibase = {}));
|