cyp/app/js/item.js

15 lines
316 B
JavaScript
Raw Normal View History

2020-03-12 05:46:28 +08:00
import * as html from "./html.js";
export default class Item extends HTMLElement {
constructor() {
super();
this.addEventListener("click", _ => this.onClick());
}
onClick() { this.parentNode.selection.toggle(this); }
_buildTitle(title) {
return html.node("span", {className:"title"}, title, this);
}
}