fckplugin.js

来自「完美的在线教育系统」· JavaScript 代码 · 共 18 行

JS
18
字号
/*FCKCommands.RegisterCommand(commandName, command)       commandName - Command name, referenced by the Toolbar, etc...       command - Command object (must provide an Execute() function).*/// Register the related commands.FCKCommands.RegisterCommand(   'mimetex',    new FCKDialogCommand(        FCKLang['DlgMimeTeX'],        FCKLang['DlgMimeTeX'],        FCKConfig.PluginsPath + 'mimetex/mimetex.html', 750, 500));// Create the "mimeTeX" toolbar button.var oFindItem = new FCKToolbarButton('mimetex', FCKLang['DlgMimeTeX']);oFindItem.IconPath = FCKConfig.PluginsPath + 'mimetex/mimetex.gif' ;// 'mimetex' is the name used in the Toolbar config.FCKToolbarItems.RegisterItem( 'mimetex', oFindItem ) ;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?