Sha256: 6357ae903fd1c457c6727e0b18d2b9894a1fb675b4ed212ceec40def21d3adcb

Contents?: true

Size: 1.09 KB

Versions: 22

Compression:

Stored size: 1.09 KB

Contents

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

(function()
{
	var spacesRegex = /[\t\r\n ]{2,}|[\t\r\n]/g;

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

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

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

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

			if ( filter && !( text = filter.onText( text, this ) ) )
				return;

			writer.text( text );
		}
	};
})();

Version data entries

22 entries across 22 versions & 6 rubygems

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