Opened 15 years ago
Last modified 15 years ago
#5777 confirmed Bug
JS error when fullPage is set to true and the title tag is missing
| Reported by: | Wiktor Walc | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | General | Version: | |
| Keywords: | Firefox | Cc: |
Description
Confirmed in FF 3.0.19.
When using CKEditor in fullPage mode, an error is thrown when <title> tag is not present.
Steps to reproduce:
- In Ajax sample add
var config = {fullPage : true};
in createEditor() function.
- Open ajax sample, press "Create Editor".
- Press "Source" button or "Remove Editor".
Result:
element.children[0] is undefined http://192.168.1.126/bugtest/ckeditor/_source/plugins/htmldataprocessor/plugin.js Line 198
196 title : function( element )
197 {
198 element.children[ 0 ].value = element.attributes[ '_cke_title' ];
199 }
