JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-4.0_full
[ckeditor.git] / _source / core / htmlparser / comment.js
diff --git a/_source/core/htmlparser/comment.js b/_source/core/htmlparser/comment.js
deleted file mode 100644 (file)
index 4ca896d..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/*\r
-Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.\r
-For licensing, see LICENSE.html or http://ckeditor.com/license\r
-*/\r
-\r
-/**\r
- * A lightweight representation of an HTML comment.\r
- * @constructor\r
- * @example\r
- */\r
-CKEDITOR.htmlParser.comment = function( value )\r
-{\r
-       /**\r
-        * The comment text.\r
-        * @type String\r
-        * @example\r
-        */\r
-       this.value = value;\r
-\r
-       /** @private */\r
-       this._ =\r
-       {\r
-               isBlockLike : false\r
-       };\r
-};\r
-\r
-CKEDITOR.htmlParser.comment.prototype =\r
-{\r
-       /**\r
-        * The node type. This is a constant value set to {@link CKEDITOR.NODE_COMMENT}.\r
-        * @type Number\r
-        * @example\r
-        */\r
-       type : CKEDITOR.NODE_COMMENT,\r
-\r
-       /**\r
-        * Writes the HTML representation of this comment to a CKEDITOR.htmlWriter.\r
-        * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.\r
-        * @example\r
-        */\r
-       writeHtml : function( writer, filter )\r
-       {\r
-               var comment = this.value;\r
-\r
-               if ( filter )\r
-               {\r
-                       if ( !( comment = filter.onComment( comment, this ) ) )\r
-                               return;\r
-\r
-                       if ( typeof comment != 'string' )\r
-                       {\r
-                               comment.parent = this.parent;\r
-                               comment.writeHtml( writer, filter );\r
-                               return;\r
-                       }\r
-               }\r
-\r
-               writer.comment( comment );\r
-       }\r
-};\r