Sha256: 0918902554654f672404afb985f38f8e78132691628c7fbe97bdb93a57fdcbb1
Contents?: true
Size: 1.27 KB
Versions: 6
Compression:
Stored size: 1.27 KB
Contents
o: ActiveSupport::Cache::Entry :@created_atf1321037620.1217101 Ê:@value{ I"length:EFi%I"digest;F"%25905d7d9b9c5cd7d83b4b66e84ece65I"source;FI"%/* 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 ); } }; })(); ;FI" _version;F"%808ddcf7537802edfc66281984d1eb6f:@expires_in0:@compressedF
Version data entries
6 entries across 6 versions & 1 rubygems