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; } }