15 lines
309 B
JavaScript
Raw Normal View History

2018-03-25 23:25:17 -04:00
import NoteShort from './note_short.js';
class NoteFull extends NoteShort {
constructor(treeCache, row) {
super(treeCache, row);
this.content = row.content;
if (this.isJson()) {
this.jsonContent = JSON.parse(this.content);
}
}
}
export default NoteFull;