8000 remove redundant code · supercoderhawk/emr-processor@e667b46 · GitHub
[go: up one dir, main page]

Skip to content

Commit e667b46

Browse files
remove redundant code
1 parent 22ca9cc commit e667b46

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

app/src/renderer/components/VueEditor.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@
6464
readOnly: this.disabled ? this.disabled : false
6565
})
6666
this.quill.format('size', '20px')
67-
this.quill.on('text-change', (delta, oldDelta, source) => {
68-
// let text = this.quill.getText()
69-
// console.log(text)
70-
})
7167
this.quill.on('selection-change', function (range, oldRange, source) {
7268
if (range) {
7369
if (range.length === 0) {
@@ -76,7 +72,6 @@
7672
let text = self.quill.getText(range.index, range.length)
7773
self.selection = text
7874
self.$emit('select', range.index, range.index + range.length - 1, text)
79-
// self.quill.format('color', 'red')
8075
}
8176
} else {
8277
}
@@ -89,7 +84,6 @@
8984
9085
checkForInitialContent () {
9186
this.editor.innerHTML = this.value || ''
92-
// this.left = this.editor.clientLeft
9387
},
9488
9589
handleUpdatedEditor () {

0 commit comments

Comments
 (0)
0