I'm sorry if this is totally noob and obvious- I've just probably not found the right toggle.
Environment: I'm using ckeditor full 4.4.0 in an AngularJS project using Grunt to build, minify and stuff together the ckeditor artefacts.
When the empty editor opens up and I click the "source" button I see this:
<html> <head> <title></title> </head> <body dir="undefined"> </body> </html>
When I look at the samples that come with the editor the output does not contain the html header, just the body content.
Can you tell me what I'm possibly doing wrong and how I can change that?
Thanks,
Torsten.
It is an odd issue - I've
It is an odd issue - I've never seen similar before. My first idea was that you might mistakenly set config.fullPage to true, so you can check that (editor.config.fullPage). If that's not a reason, then maybe it's something related to your environment. Did you try CKEditor without Angular or without passing it through Grunt task? Maybe if you could upload a sample so we can check it then we would be able to say more.
Piotrek (Reinmar) Koszuliński
CKEditor JavaScript Developer
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Thank you so much!
Thank you so much!
I foolishly set fullPage: true as an option without truly understanding what it does.
Setting it to false eliminates the problem.
Thanks,
Torsten!