mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-26 10:00:50 +08:00
Fix copy-paste within the registration and billing web views
This commit is contained in:
parent
3b106f6484
commit
1872954320
1 changed files with 3 additions and 0 deletions
|
@ -10,6 +10,9 @@ const isTextInput = node => {
|
|||
if (!node) {
|
||||
return false;
|
||||
}
|
||||
if (node.nodeName === 'WEBVIEW') {
|
||||
return true;
|
||||
}
|
||||
if (node.nodeName === 'TEXTAREA') {
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue