Modificare il file:
\FckEditor\plugins\calculator\fckplugin.js
var FCKCalculator = function(name) { this.Name = name; } FCKCalculator.prototype.Execute = function() { myText = showModalDialog(FCKPlugins.Items['calculator'].Path + 'fck_calculator.html', name, 'resizable: no; help: no; status: no; scroll: no;'); if (!isNaN(myText)) FCK.InsertHtml(myText); } FCKCalculator.prototype.GetState = function() { return FCK_TRISTATE_OFF; } FCKCommands.RegisterCommand( 'Calculator', new FCKCalculator('Calculator')); var oCalculatorItem = new FCKToolbarButton( 'Calculator', FCKLang.CalculatorBtn, null, null, false, true) ; oCalculatorItem.IconPath = FCKPlugins.Items['calculator'].Path + 'calculator.gif' ; FCKToolbarItems.RegisterItem( 'Calculator', oCalculatorItem );
[
Íàçàä
]