Skip to content

Commit

Permalink
Note about #11925 in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed May 9, 2014
1 parent 715d88b commit 81dc623
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/dom/domobject.js
Expand Up @@ -179,6 +179,8 @@ CKEDITOR.dom.domObject.prototype = ( function() {
* clone node or from `innerHtml`) will fail, for such usage, please use
* {@link CKEDITOR.dom.element#setAttribute} instead.
*
* **Note**: This method does not work on text nodes prior to Internet Explorer 9.
*
* var element = new CKEDITOR.dom.element( 'span' );
* element.setCustomData( 'hasCustomData', true );
*
Expand Down Expand Up @@ -247,9 +249,11 @@ CKEDITOR.dom.domObject.prototype = ( function() {
};

/**
* Gets an ID that can be used to identiquely identify this DOM object in
* Gets an ID that can be used to identify this DOM object in
* the running session.
*
* **Note**: This method does not work on text nodes prior to Internet Explorer 9.
*
* @returns {Number} A unique ID.
*/
domObjectProto.getUniqueId = function() {
Expand Down

0 comments on commit 81dc623

Please sign in to comment.