(...args)
| 834 | |
| 835 | class TaskTreema extends TreemaNode.nodeMap.string { |
| 836 | constructor (...args) { |
| 837 | super(...args) |
| 838 | this.onTaskChanged = this.onTaskChanged.bind(this) |
| 839 | this.onEditInputBlur = this.onEditInputBlur.bind(this) |
| 840 | } |
| 841 | |
| 842 | buildValueForDisplay (valEl) { |
| 843 | this.taskCheckbox = $('<input type="checkbox">').prop('checked', this.data.complete) |
nothing calls this directly
no outgoing calls
no test coverage detected