- assigned_to: nobody --> fredck
- status: open --> open-fixed
currently if you try to remove a column right clicking
in a TH it won't work. To fix it just add a search for
TH if it can't find a TD:
FCKTableHandler.DeleteColumns = function()
{
// Get the cell where the selection is placed in.
var oCell = FCKSelection.MoveToAncestorNode("TD") ;
if ( !oCell )
oCell = FCKSelection.MoveToAncestorNode("TH") ;
in source\internals\fcktablehandler.js
Log in to post a comment.