Created
May 30, 2012 01:39
-
-
Save minism/2832403 to your computer and use it in GitHub Desktop.
Fix CKEditor not letting you paste something before typing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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