Skip to content

Instantly share code, notes, and snippets.

@minism
Created May 30, 2012 01:39
Show Gist options
  • Save minism/2832403 to your computer and use it in GitHub Desktop.
Save minism/2832403 to your computer and use it in GitHub Desktop.
Fix CKEditor not letting you paste something before typing
editor.on('paste', function(e) {
if (e.editor.getData() == "")
e.editor.setData(e.data.html)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment