Ticket #8321: 8321_2.patch

File 8321_2.patch, 553 bytes (added by Garry Yao, 12 years ago)
  • _source/core/dom/element.js

     
    721721
    722722                isEditable : function()
    723723                {
    724                         if ( this.isReadOnly() || !this.isVisible() )
     724                        if ( this.isReadOnly()
     725                                        || this.getComputedStyle( 'display' ) == 'none'
     726                                        || this.getComputedStyle( 'visibility' ) == 'hidden' )
     727                        {
    725728                                return false;
     729                        }
    726730
    727731                        // Get the element name.
    728732                        var name = this.getName();
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy