|
@@ -79,7 +79,7 @@ export const chatInputMixin = {
|
|
|
},
|
|
|
watch: {
|
|
|
inputMsg (val, newval) {
|
|
|
- this.fixIOS()
|
|
|
+ // this.fixIOS()
|
|
|
|
|
|
this.handleSelectionChange()
|
|
|
}
|
|
@@ -104,12 +104,12 @@ export const chatInputMixin = {
|
|
|
return false
|
|
|
},
|
|
|
handleFocus () {
|
|
|
- this.fixIOS()
|
|
|
+ // this.fixIOS()
|
|
|
|
|
|
document.addEventListener('selectionchange', this.handleSelectionChange)
|
|
|
},
|
|
|
handleBlur () {
|
|
|
- this.fixIOS(false)
|
|
|
+ // this.fixIOS(false)
|
|
|
|
|
|
document.removeEventListener('selectionchange', this.handleSelectionChange)
|
|
|
this.updateChatInputFocus(false)
|