Sha256: cedb4738d23a8daa997bea3cb2184b52d6d44f60633cadc9fba296dada4ea8f0

Contents?: true

Size: 1.13 KB

Versions: 22

Compression:

Stored size: 1.13 KB

Contents

/*
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

/**
 * A lightweight representation of an HTML comment.
 * @constructor
 * @example
 */
CKEDITOR.htmlParser.comment = function( value )
{
	/**
	 * The comment text.
	 * @type String
	 * @example
	 */
	this.value = value;

	/** @private */
	this._ =
	{
		isBlockLike : false
	};
};

CKEDITOR.htmlParser.comment.prototype =
{
	/**
	 * The node type. This is a constant value set to {@link CKEDITOR.NODE_COMMENT}.
	 * @type Number
	 * @example
	 */
	type : CKEDITOR.NODE_COMMENT,

	/**
	 * Writes the HTML representation of this comment to a CKEDITOR.htmlWriter.
	 * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
	 * @example
	 */
	writeHtml : function( writer, filter )
	{
		var comment = this.value;

		if ( filter )
		{
			if ( !( comment = filter.onComment( comment ) ) )
				return;

			if ( typeof comment != 'string' )
			{
				comment.writeHtml( writer, filter );
				return;
			}
		}

		writer.comment( comment );
	}
};

Version data entries

22 entries across 22 versions & 6 rubygems

Version Path
browsercms-3.3.4 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.4.0.rc2 vendor/assets/javascripts/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.4.0.rc1 vendor/assets/javascripts/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.3.3 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.1.5 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.1.4 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.3.2 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.3.1 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.3.0 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.1.3 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.3.0.beta public/bcms/ckeditor/core/htmlparser/comment.js
bcms_content_syncing-1.0.0 public/bcms/ckeditor/core/htmlparser/comment.js
drujensen-browsercms-3.2.0 public/bcms/ckeditor/core/htmlparser/comment.js
browsercmsi-3.1.2 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.1.2 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.1.1 public/bcms/ckeditor/core/htmlparser/comment.js
browsercmsi-3.1.1 public/bcms/ckeditor/core/htmlparser/comment.js
browsercmsi-3.1.0 public/bcms/ckeditor/core/htmlparser/comment.js
browsercms-3.1.0 public/bcms/ckeditor/core/htmlparser/comment.js
bcms_fckeditor-1.0.1 public/bcms/ckeditor/core/htmlparser/comment.js