fabric8-planner
Version:
A planner front-end for Fabric8.
26 lines • 916 B
JavaScript
import { Component, Input } from '@angular/core';
var InfotipComponent = /** @class */ (function () {
function InfotipComponent() {
this.infotipId = '';
}
InfotipComponent.prototype.handlePropagation = function (e) {
e.stopPropagation();
e.preventDefault();
};
InfotipComponent.decorators = [
{ type: Component, args: [{
selector: 'infotip',
template: require('./infotip.component.html'),
styles: [require('./infotip.component.css').toString()]
},] },
];
/** @nocollapse */
InfotipComponent.ctorParameters = function () { return []; };
InfotipComponent.propDecorators = {
'infotipText': [{ type: Input },],
'infotipId': [{ type: Input },],
};
return InfotipComponent;
}());
export { InfotipComponent };
//# sourceMappingURL=infotip.component.js.map