Skip paste handling if composer textarea lost focus
This commit is contained in:
parent
4531563717
commit
7d88cfde0e
|
@ -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…
Reference in New Issue