@print-one/grapesjs
Version:
Free and Open Source Web Builder Framework
13 lines (10 loc) • 354 B
text/typescript
import ComponentTextView from './ComponentTextView';
export default class ComponentLinkView extends ComponentTextView {
render() {
super.render();
// I need capturing instead of bubbling as bubbled clicks from other
// children will execute the link event
this.el.addEventListener('click', this.prevDef, true);
return this;
}
}