Ticket #4368: 4368.patch

File 4368.patch, 1.7 KB (added by Tobiasz Cudnik, 15 years ago)
  • _source/plugins/tabletools/dialogs/tableCell.js

     
    379379                                                                                                        'default' : '',
    380380                                                                                                        setup : function( selectedCell )
    381381                                                                                                        {
    382                                                                                                                 this.setValue( selectedCell.getAttribute( 'borderColor' ) || '' );
     382                                                                                                                this.setValue( selectedCell.getStyle( 'border-color' ) || '' );
    383383                                                                                                        },
    384384                                                                                                        commit : function( selectedCell )
    385385                                                                                                        {
    386386                                                                                                                if ( this.getValue() )
    387                                                                                                                         selectedCell.setAttribute( 'borderColor', this.getValue() );
     387                                                                                                                        selectedCell.setStyle( 'border-color', this.getValue() );
    388388                                                                                                                else
    389                                                                                                                         selectedCell.removeAttribute( 'borderColor' );
     389                                                                                                                        selectedCell.removeStyle( 'border-color' );
    390390                                                                                                        }
    391391                                                                                                },
    392392                                                                                                {
  • CHANGES.html

     
    6464                <li><a href="http://dev.fckeditor.net/ticket/3568">#3568</a> : Dialogs now select all text when tabbing to text inputs.</li>
    6565                <li><a href="http://dev.fckeditor.net/ticket/3727">#3727</a> : Cell Properties dialog was missing color selection option.</li>
    6666                <li><a href="http://dev.fckeditor.net/ticket/3517">#3517</a> : Fixed "Match cyclic" field in Find & Replace dialog.</li>
     67                <li><a href="http://dev.fckeditor.net/ticket/4368">#4368</a> : borderColor table cell attribute haven't worked for none-IE</li>
    6768        </ul>
    6869        <h3>
    6970                CKEditor 3.0</h3>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy