// tslint:disable import {BindableProperty} from "web-atoms-core/dist/core/BindableProperty"; import {AtomControl} from "web-atoms-core/dist/web/controls/AtomControl"; // tslint:disable declare var UMD: any; const __moduleName = this.filename; export default class HelpPopup extends AtomControl { public static readonly _$_url = __moduleName ; constructor(app: any, e?: any) { super(app, e || document.createElement("div")); } public create(): void { super.create(); const __creator = this; this.setPrimitiveValue(this.element, "style", "padding:10px; margin:5px; border: 1px solid lightgray; background-color: white; border-radius: 5px;" ); const e1 = document.createElement("span"); this.append(e1); this.bind(e1, "text", [["viewModel","message"]], false , null ); } }