Opened 15 years ago

Closed 14 years ago

#4153 closed New Feature (wontfix)

CKeditor objects rename proposal

Reported by: Paul Moers Owned by:
Priority: Normal Milestone:
Component: General Version: SVN (CKEditor) - OLD
Keywords: Cc:

Description

When scripting around the editor I create a bunch of references to the objects of the FCKeditor, some of which the name differs from its name in the FCKeditor. If find my names more clear and less ambiguous.

editorFrame = document.getElementById(editorInstance.Name + '___Frame');
editorWindow = editorInstance.EditorWindow.parent;
editorDocument = editorWindow.document;
editorBody = editorDocument.body;
editingAreaWindow = editorInstance.EditorWindow;
editingAreaDocument = editorInstance.EditorDocument;
editingAreaBody = editingAreaDocument.body;
editingAreaIFrame = getElement('xEditingArea').getElementsByTagName('iframe')[0];

I believe these names are better than the current object names and make scripting for the FCKeditor easier.

This proposal thus is not a proposal for alias names, but new names for the convenience of scripters.

Change History (1)

comment:1 Changed 14 years ago by Alfonso Martínez de Lizarrondo

Resolution: wontfix
Status: newclosed

Those elements doesn't exist in CKEditor, you can learn about the new objects in the API docs.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy