- assigned_to: nobody --> fredck
- status: open --> open-fixed
in GetParentElement at internals\fckselection_gecko.js
it is used .parentElement to get up the dom, but this
is not a standard property, the correct one is .parentNode:
FCKSelection.GetParentElement = function()
{
if ( this.GetType() == 'Control' )
return FCKSelection.GetSelectedElement().parentNode ;
else
...
Log in to post a comment.