X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fcore%2Fdom%2Fdomobject.js;h=6962fdb58081adf72e43012fece812aec2e637c6;hp=c0c6e63cd9b6e5b9d2a671152fc6683f4ba2bf4e;hb=c6e377a02b54abc07129d72b632763c727476a15;hpb=941b0a9ba4e673e292510d80a5a86806994b8ea6 diff --git a/_source/core/dom/domobject.js b/_source/core/dom/domobject.js index c0c6e63..6962fdb 100644 --- a/_source/core/dom/domobject.js +++ b/_source/core/dom/domobject.js @@ -181,6 +181,9 @@ CKEDITOR.dom.domObject.prototype = (function() return dataSlot && dataSlot[ key ]; }; + /** + * @name CKEDITOR.dom.domObject.prototype.removeCustomData + */ domObjectProto.removeCustomData = function( key ) { var expandoNumber = this.$._cke_expando, @@ -193,6 +196,9 @@ CKEDITOR.dom.domObject.prototype = (function() return retval || null; }; + /** + * @name CKEDITOR.dom.domObject.prototype.getCustomData + */ domObjectProto.getUniqueId = function() { return this.$._cke_expando || ( this.$._cke_expando = CKEDITOR.tools.getNextNumber() );