Modificare il file:
\FckEditor\plugins\insertHtmlCode\fck_insertHtmlCode.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <!-- * File Name: fck_insertHtmlCode.html * Insert Code dialog window. * * File Authors: * Abdul-Aziz Al-Oraij (top7up@hotmail.com) * Michel Staelens * Bernadette Cierzniak * Frederico Caldeira Knabben (fredck@fckeditor.net) * Nico Piponides --> <html> <head> <title>Insert Code</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta content="noindex, nofollow" name="robots"> <link rel="stylesheet" type="text/css" href="fck_insertHtmlCode.css" /> <script type="text/javascript"> var oEditor = window.parent.InnerDialogLoaded() ; window.onload = function() { document.body.style.padding = '0px' ; // First of all, translate the dialog box texts oEditor.FCKLanguageManager.TranslatePage(document) ; window.parent.SetOkButton( true ) ; window.parent.SetAutoSize( true ) ; } function Ok() { var oArea = document.getElementById( 'insCode_area' ) ; if ( oArea.value.length > 0 ) oEditor.FCK.InsertHtml( oArea.value ) ; return true ; } </script> </head> <body style="OVERFLOW: hidden" scroll="no"> <textarea id="insCode_area" cols="40" rows="15" style="width:100%;height:180px;"></textarea> <script type="text/javascript" src="dialogue.js"></script> </body> </html>
[
Íàçàä
]