Sha256: 63004b92692805a6332f17eda41d30508b38266f18984f9fcd2dce62da5ade66
Contents?: true
Size: 915 Bytes
Versions: 22
Compression:
Stored size: 915 Bytes
Contents
/* Copyright (c) 2003-2009, 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.cdata = function( value ) { /** * The CDATA value. * @type String * @example */ this.value = value; }; CKEDITOR.htmlParser.cdata.prototype = { /** * CDATA has the same type as {@link CKEDITOR.htmlParser.text} This is * a constant value set to {@link CKEDITOR.NODE_TEXT}. * @type Number * @example */ type : CKEDITOR.NODE_TEXT, /** * Writes write the CDATA with no special manipulations. * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML. */ writeHtml : function( writer ) { writer.write( this.value ); } }; })();
Version data entries
22 entries across 22 versions & 6 rubygems