mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2025-04-21 07:16:18 -04:00
Fix display name not being editable on some older iOS devices (#163)
This commit is contained in:
parent
38a80d2d34
commit
cd669b13d9
4 changed files with 16 additions and 4 deletions
|
@ -1769,7 +1769,6 @@ class SendTextDialog extends Dialog {
|
|||
const range = document.createRange();
|
||||
const sel = window.getSelection();
|
||||
|
||||
this.$text.focus();
|
||||
range.selectNodeContents(this.$text);
|
||||
sel.removeAllRanges();
|
||||
sel.addRange(range);
|
||||
|
@ -1785,7 +1784,7 @@ class SendTextDialog extends Dialog {
|
|||
to: this.correspondingPeerId,
|
||||
text: this.$text.innerText
|
||||
});
|
||||
this.$text.value = "";
|
||||
this.$text.innerText = "";
|
||||
this.hide();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue