Sha256: ab05776131b45e80ff62acd32af6bbbc142232fe4d5a9da2f0456380cb0a2c87

Contents?: true

Size: 1.04 KB

Versions: 24

Compression:

Stored size: 1.04 KB

Contents

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

(function()
{
	/**
	 * 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

24 entries across 21 versions & 4 rubygems

Version Path
padrino-cms-0.1.1 lib/padrino-cms/generators/templates/public/admin/javascripts/ckeditor/_source/core/htmlparser/text.js
padrino-cms-0.1.1 lib/padrino-cms/public/admin/javascripts/ckeditor/_source/core/htmlparser/text.js
refinerycms-ckeditor-0.1.4 app/assets/javascripts/ckeditor/_source/core/htmlparser/text.js
refinerycms-ckeditor-0.1.3 app/assets/javascripts/ckeditor/_source/core/htmlparser/text.js
refinerycms-ckeditor-0.1.2 app/assets/javascripts/ckeditor/_source/core/htmlparser/text.js
refinerycms-ckeditor-0.1.1 app/assets/javascripts/ckeditor/_source/core/htmlparser/text.js
refinerycms-ckeditor-0.1.0 app/assets/javascripts/ckeditor/_source/core/htmlparser/text.js
rich-1.0.3 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/text.js
rich-1.0.2 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/text.js
rich-1.0.1 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/text.js
rich-1.0.0 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/text.js
quic_cms-0.1.4 app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/text.js
rich-0.0.8 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/text.js
rich-0.0.7 test/dummy/public/assets/ckeditor/_source/core/htmlparser/text.js
rich-0.0.7 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/text.js
rich-0.0.6 vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/text.js
quic_cms-0.1.3 app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/text.js
quic_cms-0.1.2 app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/text.js
quic_cms-0.1.1 app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/text.js
quic_cms-0.1.0 app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/text.js