Skip to content

Instantly share code, notes, and snippets.

@dayvsonlima
Created June 11, 2017 12:45
Show Gist options
  • Save dayvsonlima/9ce4b55f9d5a6c34590cf38716125ae6 to your computer and use it in GitHub Desktop.
Save dayvsonlima/9ce4b55f9d5a6c34590cf38716125ae6 to your computer and use it in GitHub Desktop.
$('.summernote').summernote({
callbacks: {
onPaste: function (e) {
var bufferText = ((e.originalEvent || e).clipboardData || window.clipboardData).getData('Text');
e.preventDefault();
// Firefox fix
setTimeout(function () {
document.execCommand('insertText', false, bufferText);
}, 10);
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment