mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
Skip paste handling if composer textarea lost focus
This commit is contained in:
parent
4531563717
commit
7d88cfde0e
1 changed files with 4 additions and 0 deletions
|
@ -640,6 +640,10 @@ export default Ember.Component.extend({
|
|||
},
|
||||
|
||||
paste(e) {
|
||||
if (!$(".d-editor-input").is(":focus")) {
|
||||
return;
|
||||
}
|
||||
|
||||
const { clipboard, types } = clipboardData(e);
|
||||
const placeholder = `${ I18n.t('pasting') }`;
|
||||
let plainText = clipboard.getData("text/plain");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue