UNPKG

aurelia-materialize-bridge

Version:
49 lines 1.61 kB
import * as tslib_1 from "tslib"; import * as au from "../aurelia"; var MdTooltip = /** @class */ (function () { function MdTooltip(element) { this.element = element; this.position = "bottom"; this.delay = 50; this.html = ""; } MdTooltip.prototype.textChanged = function () { this.initTooltip(); }; MdTooltip.prototype.attached = function () { this.initTooltip(); }; MdTooltip.prototype.detached = function () { if (this.instance) { this.instance.destroy(); } }; MdTooltip.prototype.initTooltip = function () { if (this.html) { this.instance = new M.Tooltip(this.element, { exitDelay: this.delay, html: this.html, position: this.position }); } else if (this.instance) { this.instance.destroy(); } }; tslib_1.__decorate([ au.bindable, tslib_1.__metadata("design:type", String) ], MdTooltip.prototype, "position", void 0); tslib_1.__decorate([ au.bindable, tslib_1.__metadata("design:type", Number) ], MdTooltip.prototype, "delay", void 0); tslib_1.__decorate([ au.bindable, tslib_1.__metadata("design:type", String) ], MdTooltip.prototype, "html", void 0); MdTooltip = tslib_1.__decorate([ au.customAttribute("md-tooltip"), au.autoinject, tslib_1.__metadata("design:paramtypes", [Element]) ], MdTooltip); return MdTooltip; }()); export { MdTooltip }; //# sourceMappingURL=tooltip.js.map