(event, editor)
| 128 | } |
| 129 | |
| 130 | onEditorChange (event, editor) { |
| 131 | if (this.destroyed) { return } |
| 132 | const index = $(editor.el).data('index') |
| 133 | const rowInfo = this.translationList[index] |
| 134 | const value = editor.getValue() |
| 135 | return this.onTranslationChanged(rowInfo, value) |
| 136 | } |
| 137 | |
| 138 | wrapRow (title, key, enValue, toValue, path, format) { |
| 139 | if (!enValue) { return } |
nothing calls this directly
no test coverage detected