Ticket #2765: 2765_3.patch

File 2765_3.patch, 600 bytes (added by Garry Yao, 15 years ago)
  • _source/core/htmlparser/element.js

     
    111111                        // Send the attributes.
    112112                        for ( var i = 0, len = attribsArray.length ; i < len ; i++ )
    113113                        {
     114               
    114115                                var attrib = attribsArray[ i ];
     116                                // IE's treated expand fields as dom attributes, skip it
     117                                if ( CKEDITOR.env.ie && attrib === '_cke_expando' )
     118                                        continue;
    115119                                writer.attribute( attrib[0], attrib[1] );
    116120                        }
    117121
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy