You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before version 2.0, the paste event was triggered before the text-change event, but after version 2.0, the order was reversed. Is this a bug or an intentional change?
#4184
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
quill.root.addEventListener('paste', (e) => { console.log("---2---"); }); quill.on('text-change', async function (delta, oldDelta, source) { console.log('---1---'); });
1.3.7
2.0
Beta Was this translation helpful? Give feedback.
All reactions