Skip to content

Commit

Permalink
Merge branch 't/8663'
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Mar 11, 2014
2 parents 040c599 + d885276 commit 662fc07
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Expand Up @@ -3,6 +3,10 @@ CKEditor 4 Changelog

## CKEditor 4.3.4

Fixed Issues:

* [#8663](http://dev.ckeditor.com/ticket/8663): Fixed [`element.renameNode()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-renameNode) not clearing [`element.getName()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-getName) cache.

## CKEditor 4.3.3

Fixed Issues:
Expand Down
2 changes: 2 additions & 0 deletions core/dom/element.js
Expand Up @@ -1705,6 +1705,8 @@ CKEDITOR.tools.extend( CKEDITOR.dom.element.prototype, {
this.getParent() && this.$.parentNode.replaceChild( newNode.$, this.$ );
newNode.$[ 'data-cke-expando' ] = this.$[ 'data-cke-expando' ];
this.$ = newNode.$;
// Bust getName's cache. (#8663)
delete this.getName;
},

/**
Expand Down

0 comments on commit 662fc07

Please sign in to comment.