Sha256: 340bd33930a7a8868ff892528cbeb38d62258e04e869577e2b08341e0f73fcb0
Contents?: true
Size: 1.41 KB
Versions: 6
Compression:
Stored size: 1.41 KB
Contents
o: ActiveSupport::Cache::Entry :@created_atf1321037620.1032178 ›:@value{ I"length:EFi¯I"digest;F"%6d275a5330dd0816fc9d779f3aec40f2I"source;FI"¯/* Copyright (c) 2003-2011, 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, this ) ) ) return; if ( typeof comment != 'string' ) { comment.parent = this.parent; comment.writeHtml( writer, filter ); return; } } writer.comment( comment ); } }; ;FI" _version;F"%85e8cca3f901cb4c95d402cfc84b7380:@expires_in0:@compressedF
Version data entries
6 entries across 6 versions & 1 rubygems