Ticket #2765: element.js.diff

File element.js.diff, 617 bytes (added by Garry Yao, 15 years ago)
  • element.js

     
    117117                        // Copy all attributes to an array.
    118118                        var attribsArray = [];
    119119                        for ( var a in this.attributes )
    120                                 attribsArray.push( [ a, this.attributes[ a ] ] );
     120            {
     121                if(CKEDITOR.env.ie && a ===  '_cke_expando')
     122                    continue;
     123                attribsArray.push( [ a, this.attributes[ a ] ] );
     124            }
     125                               
    121126
    122127                        // Sort the attributes by name.
    123128                        attribsArray.sort( sortAttribs );
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy