Skip to content

Commit

Permalink
Merge branch 't/11400'
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Feb 5, 2014
2 parents fff2039 + 5af4ae4 commit ea89af0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -13,6 +13,7 @@ Fixed Issues:
* [#11058](http://dev.ckeditor.com/ticket/11058): [IE8] Fixed: Error when deleting a row.
* [#11508](http://dev.ckeditor.com/ticket/11508): Fixed: htmlDataProcessor discovering protected attributes within other attributes' values.
* [#11533](http://dev.ckeditor.com/ticket/11533): Widgets: Avoid recurring upcasts if DOM structure was modified during an upcast.
* [#11400](http://dev.ckeditor.com/ticket/11400): Fixed [`domObject.removeAllListeners`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.domObject-method-removeAllListeners) does not remove custom listeners completely.

## CKEditor 4.3.2

Expand Down
4 changes: 4 additions & 0 deletions core/dom/domobject.js
Expand Up @@ -136,6 +136,10 @@ CKEDITOR.dom.domObject.prototype = ( function() {

delete nativeListeners[ eventName ];
}

// Remove events from events object so fire() method will not call
// listeners (#11400).
CKEDITOR.event.prototype.removeAllListeners.call( this );
}
};
} )();
Expand Down

0 comments on commit ea89af0

Please sign in to comment.