diff --git a/static/application.js b/static/application.js index 2e633aa4..86bee330 100644 --- a/static/application.js +++ b/static/application.js @@ -1041,7 +1041,7 @@ function chunkOnPaste(event) { } // If possible, intercept paste events into the editor in order to always // paste as plaintext - if(event.originalEvent.clipboardData && document.queryCommandSupported && document.execCommand && document.queryCommandSupported('insertText')) { + if(event.originalEvent.clipboardData && document.queryCommandSupported && document.execCommand && document.queryCommandSupported('insertHTML')) { event.preventDefault(); document.execCommand('insertHTML', false, event.originalEvent.clipboardData.getData('text/plain').replace(/&/g, '&').replace(//g, '>').replace(/"/g, '"').replace(/'/g, ''').replace(/(?=\r|\n)\r?\n?/g, '
')); } else if (event.originalEvent.clipboardData) { diff --git a/templates/index.html b/templates/index.html index 0f4d654e..1de19e28 100644 --- a/templates/index.html +++ b/templates/index.html @@ -6,7 +6,7 @@ - +