Ticket #8321: 8321_2.patch
File 8321_2.patch, 553 bytes (added by , 12 years ago) |
---|
-
_source/core/dom/element.js
721 721 722 722 isEditable : function() 723 723 { 724 if ( this.isReadOnly() || !this.isVisible() ) 724 if ( this.isReadOnly() 725 || this.getComputedStyle( 'display' ) == 'none' 726 || this.getComputedStyle( 'visibility' ) == 'hidden' ) 727 { 725 728 return false; 729 } 726 730 727 731 // Get the element name. 728 732 var name = this.getName();