rich español descargar bootstrap javascript internet-explorer-8 tinymce text-editor

javascript - español - TinyMCE no muestra el contenido de la página web en el navegador IE8



wysiwyg editor free (2)

Mientras estoy pegando un contenido de una página web, el editor de tinymce en IE8 no muestra el contenido.

Hola, estoy agregando la imagen que tengo.

Mi problema es 1. Tengo contenido de copia de la página web http://ch.tbe.taleo.net/CH02/ats/careers/requisition.jsp?org=TRAILERPARK&cws=1&rid=148 y trato de pegar en mi editor de tinymce que está abierto en Ie8 .. 2.el resultado se muestra como en la imagen como cuadro rojo


Refiérase a Agregar nuevas fuentes a las opciones de fuente de TinyMCE

el sitio que está copiando de usos (ver la fuente):

@font-face { font-family: "Museo Slab W01 1000"; src: url("http://www.trailerpark.com/Fonts/ee02ec61-b42e-49bb-9942-0793380267f5.eot?iefix"); src: url("http://www.trailerpark.com/Fonts/f6e64e68-be62-481f-bcf3-923028fc62e0.svg#f6e64e68-be62-481f-bcf3-923028fc62e0") format("svg"), url("http://www.trailerpark.com/Fonts/b6bcb198-882f-4f57-a02c-07e8155aab5f.woff") format("woff"), url("http://www.trailerpark.com/Fonts/cfa01f25-bb4c-4a09-8ba3-8afafcbb3508.ttf") format("truetype"); }


Utilice el método type: encoding: "raw"

function exilTinyMCEInit (args) {

tinyMCE.init({ mode : "exact", theme : "advanced", plugins : "paste", elements : args, theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,bullist,numlist,undo,redo", theme_advanced_buttons2 : "", theme_advanced_buttons3 : "", theme_advanced_buttons4 : "", theme_advanced_toolbar_location : "bottom", theme_advanced_toolbar_align : "center", theme_advanced_resizing : false, onchange_callback : "exilTinyMCEOnChangeHandler", encoding : "raw", setup : function(ed) { var curElement = P2.getFieldObject(ed.id); if (curElement.disabled || curElement.readOnly) { ed.settings.readonly = true; } else { ed.settings.readonly = false; } } });

}