JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.1.1
[ckeditor.git] / _source / core / dom / document.js
index e1026c1..bd8c18c 100644 (file)
@@ -168,7 +168,6 @@ CKEDITOR.tools.extend( CKEDITOR.dom.document.prototype,
                        head = new CKEDITOR.dom.element( head );\r
 \r
                        return (\r
-                       /** @ignore */\r
                        this.getHead = function()\r
                                {\r
                                        return head;\r
@@ -187,19 +186,21 @@ CKEDITOR.tools.extend( CKEDITOR.dom.document.prototype,
                        var body = new CKEDITOR.dom.element( this.$.body );\r
 \r
                        return (\r
-                       /** @ignore */\r
                        this.getBody = function()\r
                                {\r
                                        return body;\r
                                })();\r
                },\r
 \r
+               /**\r
+                * Gets the DOM document element for this document.\r
+                * @returns {CKEDITOR.dom.element} The DOM document element.\r
+                */\r
                getDocumentElement : function()\r
                {\r
                        var documentElement = new CKEDITOR.dom.element( this.$.documentElement );\r
 \r
                        return (\r
-                       /** @ignore */\r
                        this.getDocumentElement = function()\r
                                {\r
                                        return documentElement;\r
@@ -209,14 +210,12 @@ CKEDITOR.tools.extend( CKEDITOR.dom.document.prototype,
                /**\r
                 * Gets the window object that holds this document.\r
                 * @returns {CKEDITOR.dom.window} The window object.\r
-                * @example\r
                 */\r
                getWindow : function()\r
                {\r
                        var win = new CKEDITOR.dom.window( this.$.parentWindow || this.$.defaultView );\r
 \r
                        return (\r
-                       /** @ignore */\r
                        this.getWindow = function()\r
                                {\r
                                        return win;\r