You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
382 B
18 lines
382 B
module.exports = class {
|
|
onCreate(input) {
|
|
this.state = {
|
|
showCharacter: false,
|
|
paragraphs: input.comment.source.split('\n').filter(l => l.length > 1),
|
|
}
|
|
}
|
|
|
|
onInput(input) {
|
|
if (this.state) {
|
|
this.state.paragraphs = input.comment.source.split('\n').filter(l => l.length > 1)
|
|
}
|
|
}
|
|
|
|
toggle(key) {
|
|
this.state[key] = !this.state[key]
|
|
}
|
|
}
|